
function openPopup ( url, width, height )
{
	/*var popup, screenWidth, screenHeight, left, top;
	
	screenWidth = window.screen.width;
	screenHeight = window.screen.height;
	
	left = ( screenWidth - width ) / 2;
	top = ( screenHeight - height ) / 2;


	if (navigator.userAgent.indexOf("MSIE 6")>-1){
		popup = window.open ( "", "Sebor", "fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0" +
		",width=" + width + ",height=" + (height + 1));
		popup.moveTo ( left, top );
		}
	else {
		popup = window.open ( "", "Sebor", "fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0" +
		",width=" + width + ",height=" + height);
		popup.resizeTo ( width, height );
		popup.moveTo ( left, top );
		}
*/
	
	//popup.blur();
	//window.focus();
	var popupwindow;	

	popupwindow = window.open( url, "Sebor", "width=" + width + ",height=" + (height + 1) + ",scrollbars=0,resizable=0");
	
	//popup.location.href = url;

	//popup.focus();
}

var popuptimer;

function openPopupProduct ( url, productID, width, height )
{	

	window.open( url, "Sebor", "width=" + width + ",height=" + (height + 1) + ",scrollbars=0,resizable=0");

	popuptimer = window.setTimeout("checkPopup('" + productID + "');", 5000);
}

function cancelTimer(){
	window.clearTimeout(popuptimer);
}

function checkPopup(productID){
		window.location.href = "http://www.seborabsinth.com/shop/basket.asp?ProductID="+productID;
}

function viewTShirt() 
{
	window.open( "http://www.seborabsinth.com/images/shop/products/havokcloseup.jpg", "Havok", "width=525,height=725,scrollbars=0,resizable=0");
}
