// JavaScript Document
function openWindow(url,w,h) 
{
	leftVal = (w - screen.width) / 2;
	topVal = (h - screen.height) / 2;
	
	newWindow = window.open(url, 'cart', 'width='+w+',height='+h+',left='+leftVal+',top='+topVal);

}
