function newWindow(href, title, w, h, scrollbars) {
	w1=window.open(href,title,'status=0, toolbar=0, resizable=0, directories=0, location=0, menubar=0,  scrollbars='+scrollbars+',width='+w+',height='+h);
	
	w1.document.write('Please wait ....');
	w1.focus();
}

function newWindowBig(href, title, w, h, scrollbars) {
	w1=window.open(href,title,'resizable=yes,menubar=yes,status=yes,scrollbars='+scrollbars+',width='+w+',height='+h);
	w1.focus();
}


