function ReShippingCost()
{
	var country = document.getElementById("countryS").value;
	if (country == "" || country == 0)
	{
		document.getElementById("countryS").value = GetCookie("countryS");
		if (document.getElementById("countryS").value == "")
		{
			document.getElementById("countryS").value = "223";
		}
		country = document.getElementById("countryS").value;
	}
	var count = parseInt(document.cart_quantity.cart_quantity.value);
	var url = "product_calc_shipping.php?product_id=" + g_products_id + "&count=" + count + "&country_id=" + country;
	document.getElementById("shipping_cost").src = url;
	SetCookie("countryS", country);
}

function frame_size_change(height)
{
	var obj_frm_mail = document.getElementById('p_d');

	obj_frm_mail.height=50;
	obj_frm_mail.height = height;
	// alert(obj_frm_mail.height);
	// alert(frm_mail.document.body.scrollHeight);
}

function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}
