function pd(id) {
	window.open('product_detail.php?id='+id,'prd'+id,'width=600,height=500,top=100,left=200,scrollbars=1,statusbar=0,resizable=1');
}
function clearBasket(){
	location.href = 'basket.php?a=clear&b=left.php%3Fi%3D'+eval(Math.random()*3);
}
function removeBasket(pid,i,gBack){
	if (!gBack) gBack = "left.php%3Fi%3D"+eval(Math.random()*3);
	location.href = 'basket.php?a=remove&p='+pid+'&i='+i+'&b='+gBack;
}
function updateBasket(){
	document.forms['upBasForm'].submit();
}
function approveBasket(){
	document.forms['upBasForm']['b'].value = 'left.php?nb=1';
	document.forms['upBasForm'].submit();
}
function pim(nam,w,h) {
	var text = "<html><head></head><body style='margin: 0px 0px' oncontextmenu='window.close();'><a href='javascript:window.close();' title='Kapatmak için tıklayın...'><img src='"+nam+"' width='"+w+"' height='"+h+"' border='0' alt='Kapatmak için tıklayın...' style='border:#000000 1px solid;cursor:pointer;'></a></body></html>";
	var win = window.open('','prdimg','top=200, left=200, width='+(w+5)+', height='+(h+5)+',scrollbars=0,resizable=0,statusbar=0');
	win.document.open();
	win.document.write(text);
	win.document.close();
}