////////////////////////////////////////////////////////////////////////////////////////////////////
//
//	Generic functions used all over.
//
//	Tj Eastmond <issuess@gmail.com>
//
////////////////////////////////////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////////////////////////////////////
//	Always included
////////////////////////////////////////////////////////////////////////////////////////////////////

	function openpopup(url, windowtarget) 
	{
	    window.open(
	        url, 
	        windowtarget,
	        'width=350,height=150,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
	}
	
	function openpopup2(url, windowtarget) 
	{
	    window.open(
	        url, 
	        windowtarget,
	        'width=400,height=150,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
	}
	
	function openpopup3(url, windowname, height, width) {
		window.open(
	        url, 
	        windowname,
	        'width='+width+',height='+height+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
	}


var cspopup = function(show)
{
	window.open("/cartpopup.php?show="+show,"cartpopup","toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,width=450,height=400");
};

//alert('this file is being included ok');

////////////////////////////////////////////////////////////////////////////////////////////////////
