function showDetail(imageId, isInFav) {
	if(!isInFav) isInFav = 0;
	popwin = window.open("detail.php?imageId=" +imageId+ "&isInFav=" + isInFav, "pwin", "width=760, height=660, screenX=5, left=5, screenY=5, top=5");
	popwin.focus();
}


function toFavourites(id) {
	if(cookiesAreEnabled()) {
		//set the cookie
		document.cookie = 'favaction=' + id + '; path=/shotshop/';
		//reload the backwin
		if (window.opener && !window.opener.closed)	{
			window.opener.location.reload();
		}
		else {
			window.open("http://www.soiree-shot-shop.com/shotshop/index.php");
		}
		//and close this win
		window.close();
	}
	else alert("please enable cookies!");
}

function removeFromFavourites(id) {
	if(cookiesAreEnabled()) {
		//set the cookie
		document.cookie = 'favdelete=' + id + '; path=/shotshop/';
		//reload the backwin
		if (window.opener && !window.opener.closed)	{
			window.opener.location.reload();
		}
		else {
			window.open("http://www.soiree-shot-shop.com/shotshop/index.php");
		}
		//and close this win
		window.close();
	}
	else alert("please enable cookies!");
}

function order(id) {
	//do direct order...
	//only one at a time for now
	if (window.opener && !window.opener.closed)	{
		window.opener.location.href = "http://www.soiree-shot-shop.com/shotshop/order.php?id=" + id;
	}
	else {
		window.open("http://www.soiree-shot-shop.com/shotshop/order.php?id=" + id);
	}
	//and close this win
	window.close();
	
}

function cookiesAreEnabled() {
	var cookiesOK = false;
	//set a test cookie
	document.cookie = 'cookie=luck; path=/shotshop/';
	
	//check if cookies ar eneabled
	var cookietest = document.cookie.split(';');
	for(var i=0;i < cookietest.length;i++)
	{
		var c = cookietest[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);	//strip whites
		if (c.indexOf('cookie') == 0) {
			cookiesOK = true;
			break;
		}
	}
	return(cookiesOK);
}