function openNewWindow($url,$width,$height,$top,$left)
{	
	//$url	= "flash/view_upload.php";
	if($width == "" || $height == "")
	{
		$width	= 400;
		$height	= 300;
		$top	= 150;
		$left	= 150;
	}
	win2 = window.open($url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+$width+'px,height='+$height+'px,screenX=350,screenY=150,top='+$top+',left='+$left+'');
}

function popupDescription($p)
{
	$url	= "rotator.php?p="+$p;
	openNewWindow($url,'977','777','50','100');
}
function reloadPageByCatSec($page,$cat_id,$sec_id)
{
	window.location = '?p=' + $page + '&cat=' + $cat_id + '&sec=' + $sec_id;
}
function checkSizeSelected()
{
	if(document.getElementById('size_prices').value == '')
	{
		alert('Please select for Size/Price of the Product!');
		//document.getElementById('select_size_price').style.bgColor = 'red';
	}
	else
	{
		document.getElementById('cart_form').submit();
	}
}