function loadimgp(img,e)
{
if (img!='')
{
	document.getElementById('imgp').style.display='';
	document.getElementById('imgp').innerHTML='<img style="border: 2px solid #547ACD" src="shoptb.php?img='+img+'&x=104&y=104" width="104" height="104" alt="">';
	document.getElementById('imgp').style.left = e.clientX-150+document.body.scrollLeft+document.documentElement.scrollLeft;
	document.getElementById('imgp').style.top = e.clientY+10+document.documentElement.scrollTop+document.body.scrollTop;
}
}

function unloadimgp()
{
	document.getElementById('imgp').style.display='none';

} 

function openimg(imgname)
{
	posx = (screen.availWidth/2) - 150;
    posy = (screen.availHeight/2) - 150;

	window.open('openimg.php?img='+imgname,'imagedialog','top='+posy+',left='+posx+
				',height=300,width=300,status=1,toolbar=0,menubar=0,location=0');
}

function openorder(ordernr)
{
	posx = (screen.availWidth/2) - 150;
    posy = (screen.availHeight/2) - 150;

	window.open('order.php?ordernr='+ordernr,'orderdialog','top='+posy+',left='+posx+
				',height=800,width=720,status=1,toolbar=1,menubar=0,location=0,scrollbars=yes');
}

