function popup(pieceid, x, y){
	if(screen.width-100 < x || screen.height-100 < y){
		//window.open('detail.php?pieceid='+pieceid,'New','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,resizable=1,left=10,top=10,width=' + (screen.width-100) + ',height=600');
		window.open('detail.php?pieceid='+pieceid,'New','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,resizable=1,left=10,top=10,width=' + (screen.width-100) + ',height=' + (screen.height-100) + "'");	} else {
		window.open('detail.php?pieceid='+pieceid,'New','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,resizable=1,left=10,top=10,width=' + x + ',height=' + y + "'");
	}
}

function WindowRemote(Url, WindowName, xSize, ySize, isLocked) {
	if (isLocked) {
		Window = window.open(Url,'New',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,resizable=0,left=50,top=10,width=" + xSize + ",height=" + ySize);
	} else {
		Window = window.open(Url,'New',"toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,copyhistory=1,resizable=1,left=50,top=10,width=" + xSize + ",height=" + ySize);
	}
	Window.location = Url;
	Window.focus();
}

