function OpenPopup(file,width,height) {
	var now = new Date();
	var remote = window.open(file, "popup" + now.getTime(), "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,alwaysRaised=yes,resizable=0,status=0,menubar=no,scrollbars=no,top=50,left=50");
}
function OpenPopupScroll(file,width,height) {
	var now = new Date();
	var remote = window.open(file, "popup" + now.getTime(), "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,alwaysRaised=yes,resizable=0,status=0,menubar=no,scrollbars=yes,top=50,left=50");
}
function OpenPopupPosition(file,width,height,top,left) {
	var now = new Date();
	var remote = window.open(file, "popup" + now.getTime(), "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,alwaysRaised=yes,resizable=0,status=0,menubar=no,scrollbars=no,top="+ top +",left="+left);
}



