function openwindow(gotourl,name,w,h,scrollbars) {
	var mywindow = window.open(gotourl,name,'width=' + w + ',height=' + h + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + scrollbars + ',resizable=no');
	mywindow.focus();
}

function openwindowWithScroll(gotourl,name,w,h,scrollbars) {
	var mywindow = window.open(gotourl,name,'width=' + w + ',height=' + h + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
	mywindow.focus();	
}