function openImgPopUp(imgUrl, imgName){
	MyWindow = window.open(imgUrl,"Picture","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=1,width=400,height=400");
	MyWindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
	MyWindow.document.write('<html>');
	MyWindow.document.write('<head>');
	MyWindow.document.write('	<script type="text/javascript">');
	MyWindow.document.write('		function resizePopUp() {');
	MyWindow.document.write('			iWidth = document.documentElement.clientWidth;');
	MyWindow.document.write('			iHeight = window.innerHeight;');
	MyWindow.document.write('			if(iHeight == undefined) { iHeight = document.documentElement.clientHeight; }');
	MyWindow.document.write('			iWidth = document.images[0].width - iWidth;');
	MyWindow.document.write('			iHeight = document.images[0].height - iHeight;');
	//MyWindow.document.write('			window.resizeTo(document.images[0].width, document.images[0].height);');
	//MyWindow.document.write('			alert(iWidth+" - "+iHeight);');
	MyWindow.document.write('			window.resizeBy(iWidth, iHeight);');
	MyWindow.document.write('		};');
	MyWindow.document.write('	</script>');
	MyWindow.document.write('	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
	MyWindow.document.write('	<title>'+imgName+'</title>');
	MyWindow.document.write('</head>');
	MyWindow.document.write('<body style="margin:0; padding:0;" onLoad="resizePopUp();">');
	MyWindow.document.write('	<img src="'+imgUrl+'" alt="'+imgName+'" />');
	MyWindow.document.write('</body>');
	MyWindow.document.write('</html>');
	MyWindow.document.close();
	return(false);
}

function prod_bye_count(){
	var oHref = document.getElementById('prod-bye-button');
	var prod_id = oHref.getAttribute('prod_id');
	oHref.setAttribute('href', 'cart.php?cart_add='+prod_id+'&count='+document.getElementById('bye-count').value+'&show_back=1');
}

function cart_recount(prod_id){
	var oHref = document.getElementById('cart_count_button_'+prod_id);
	oHref.setAttribute('href', 'cart.php?cart_change='+prod_id+'&count='+document.getElementById('cart_count_'+prod_id).value);
}

function tmp_recount(tmp_id, tmp_prod_id){
	var oHref = document.getElementById('tmp_count_button_'+tmp_prod_id);
	oHref.setAttribute('href', 'favorites.php?tmp_id=' + tmp_id + '&tmp_change=' + tmp_prod_id + '&count='+document.getElementById('tmp_count_'+tmp_prod_id).value);
}



