// Opens URL in New Window
function openWindow(url, name, rs, w, h, mb) {
	var resize = "";
	var menbar = "";
	if (rs) {
		resize = "resizable,";
	}
	if (mb) {
		menbar = "menubar=yes";
	}
	else {
		menbar = "menubar=no";
	}
//document.write('scrollbars,' + resize + 'width=' + w + ',height=' + h)
	popupwin = window.open(url, name, 'toolbar=no,width='+w+',height='+h+',location=no,directories=no,status=no,'+menbar+',scrollbars=yes,resizable=yes');
	window.name = 'opener';
}