function smllWindow(URL) {

newwin = window.open(URL, 'small', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=780,height=600,left = 50,top = 50');

newwin.focus();

}

function VerySmllWin(URL) {

newwin = window.open(URL, 'tiny', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=560,height=240,left = 50,top = 50');

newwin.focus();

}

function MailWin(URL) {

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

newwin.focus();

}
