/* 850x580 */
var OpenWin;
function openM(w,myname) {
	settings = 'scrollbars=yes,toolbar=no,location=yes,status=no,menubar=no,resizable=yes,dependent=no,width=850,height=580,left=0,top=0'
	OpenWin = this.open(w,myname,settings);
}

/* 640x500 */
var OpenWin;
function openS(w,myname) {
	settings = 'scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=yes,dependent=no,width=640,height=500,left=0,top=0'
	OpenWin = this.open(w,myname,settings);
}

/* 150x200 */
function openP(w){
	OpenWin = this.open(w,'CtrlWindow','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=150,height=200,left=437,top=284');
}

/* 520x300 */
var OpenWin;
function openR(w,myname) {
	settings = 'scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no,width=520,height=300,left=250,top=240'
	OpenWin = this.open(w,myname,settings);
}

/* 520x300 */
function openQ(w){
	OpenWin = this.open(w,'CtrlWindow','toolbar=1,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=520,height=300,left=250,top=240');
}

/* Generic */
function OpenX(URL,h,w,s) { 
	settings = 'height='+h+',width='+w+',scrollbars='+s+',toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no'
	OpenWin = window.open(URL,settings);
}
