function PopUpWin(img,x,y)
{
	newwin = window.open('view.php?img=' + img + '&x=' + x +'&y=' + y,'popup','toolbar=0,scrollbars=yes,menubar=no,status=no,titlebar=no,scrolling=yes,resizable=0,height=' + y + ',width=' + x);
	setTimeout('newwin.focus();',250);
}
