function shownews(id)
{
	window.open("/ReadNews/"+id+".aspx","pageshelp","height=550,width=520,scrollbars=yes,status=yes,resizable=yes"); 
}
function buyproduct(sku)
{
	var oForm = document.createElement("Form")
	oForm.setAttribute("name","buy");
	oForm.setAttribute("action","https://secure.jumbomall.com/cgi-bin/shopping/add.cgi");
	oForm.setAttribute("method","post");
	
	var oStore = document.createElement("INPUT")
	oStore.setAttribute("type","hidden");
	oStore.setAttribute("name","store");
	oStore.setAttribute("value","ez-perfume");
	oForm.appendChild(oStore);
	
	var oProduct = document.createElement("INPUT")
	oProduct.setAttribute("type","hidden");
	oProduct.setAttribute("name","product");
	oProduct.setAttribute("value",sku);
	oForm.appendChild(oProduct);

	document.body.appendChild(oForm);
	oForm.submit();
}
