function getElement(sId)
{
	return document.all ? document.all(sId) : document.getElementById(sId);
}

function switchStuff(whichPN) {
	elDiv = getElement("div_" + whichPN)
	elDetail = getElement("divDetail_" + whichPN)
	sTemp = elDiv.innerHTML
	elDiv.innerHTML = elDetail.innerHTML
	elDetail.innerHTML = sTemp
}

function open_cart(url,pn)
{
	mywin = window.open(url,"cart",'toolbar=1,location=1,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,left=150,top=20,width=600,height=600')
}