// pop up window
function windowOpen(w,h,name,URL) {
		w = w + 30;
		h = h + 40;
        newWin = window.open(URL,'',"toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=" + w + ",height=" + h);
        newWin.focus();
}
function windowOpenscroll(w,h,name,URL) {
        newWin = window.open(URL,name,"toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=" + w + ",height=" + h);
        newWin.focus();
}

function jslink(link)
{
window.open(link, '', 'dependent=no, screenx=0,screeny=0, , resizable=yes, scrollbars=no, menubar=no, location=no, toolbar=no, status=yes, titlebar=yes, width=320, height=240', false);
} 

function windowOpenBlank(w,h,name,URL) {
        w = w + 10;
        h = h + 10;
        newWin = window.open(URL,'',"location=no,left=0,top=0,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + w + ",height=" + h);
        newWin.focus();
}


