﻿
function PopUp(URL) {
var l = 121;
var t = 119;
var w = 640;
var h = 480;
var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=yes" +
",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
popup = window.open(URL,"MenuPopup",windowprops);
}


function PopUp2(URL) {
var l = 121;
var t = 119;
var w = 794;
var h = 580;
var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=yes" +
",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
popup = window.open(URL,"MenuPopup",windowprops);
}
function popup(sayfa,width,height)
{
msgWindow=window.open(sayfa,"msgWindow","toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=no, width="+width+", height="+height+"");
}