function smllWindow(URL) {

newwin = window.open(URL, 'small', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=380,height=370,left = 500,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=166,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=510,height=500,left = 50,top = 50');

newwin.focus();

}
