 
 
function vertWindow(URL,name) {
status = window.open(URL, name, 'toolbar=0,scrollbars=0,titlebar=0,location=0,status=0,menubar=0,resizable=1,width=10,height=600');
}
 
 

function horizWindow(URL,name) {
status = window.open(URL, name, 'toolbar=0,scrollbars=0,titlebar=0,location=0,status=0,menubar=0,resizable=1,width=800,height=2');

}
 
 function resizeMe (wide,tall) {
 status = window.resizeTo(wide,tall)
}

function MailWin(URL) {

newwin = window.open(URL, 'mailer', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=440,height=500,left = 150,top = 50');

newwin.focus();

}
