// JavaScript Document
function addbookmark()
{
	if (document.all)
	{
		window.external.AddFavorite("http://www.d-chem.co.il","<?php print TITLE;?>");
	}
}

function external() 
{
	var i, a;
	a = document.getElementsByTagName('a');
	for (i in a) 
	{
		if (a[i].rel == 'external') 
			a[i].target = '_blank';
	}
}

function js_add_product(id)
{
	js_load_page_to_div(url+'dynamic/products/add_product/'+id, 'shoping_div_'+id);
	js_load_page_to_div(url+'dynamic/products/view_cart/'+id, 'shoping_list_div');
}
function js_remove_product(id)
{
	js_load_page_to_div(url+'dynamic/products/add_product/'+id+'?command=remove', 'shoping_div_'+id);
	js_load_page_to_div(url+'dynamic/products/view_cart/'+id, 'shoping_list_div');
}

function js_remove_product_all(id)
{
	js_load_page_to_div(url+'dynamic/products/remove/'+id, null);
	js_load_page_to_div(url+'dynamic/products/view_cart/'+id, 'shoping_list_div');
}

function delete_href(href, message)
{
	var result = window.confirm(message);
	if(result)
	{
		document.location = href;
	}
}
