function Start(page) {
var wint = (screen.height - 200);
var option = "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,top=65,left=125,width=550,height="+ wint;
OpenWin = window.open(page, "CtrlWindow", option);
}
function small_window(myurl) {
var newWindow;
var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,top=20,left=50,width=700,height=280';
newWindow = window.open(myurl, "newWindow", props);
}
function small_window2(myurl) {
var newWindow;
var winl = (screen.width - 35);
var wint = (screen.height - 120);
var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,top=0,left=0,width=' + winl +',height='+ wint;
newWindow = window.open(myurl, "newWindow", props);
}
function small_window3(myurl) {
var newWindow;
var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,top=20,left=50,width=700,height=350';
newWindow = window.open(myurl, "newWindow", props);
}
function small_window4(myurl) {
var newWindow;
var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,top=20,left=50,width=580,height=500';
newWindow = window.open(myurl, "newWindow", props);
}
function small_window5(myurl) {
var newWindow;
var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,top=0,left=0,width=700,height=500';
newWindow = window.open(myurl, "newWindow", props);
}
function full_window(page) {
var wint = (screen.height -150);
var winw = (screen.width -100);
var option = "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,top=0,left=0,width=" + winw + ",height="+ wint;
OpenWin = window.open(page, "CtrlWindow", option);
}
function openSlide(myurl) {
var slide;
var props = 'scrollBars=no,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,top=0,left=0,width=650,height=420';
slide = window.open(myurl, "slide", props);
}
function SlideShow(page) {
var option = "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes,top=65,left=125,width=350,height=300";
OpenWin = window.open(page, "CtrlWindow", option);
}