<!--

function open_popup(name,width,height) {
	var newWindow = window.open((name), 'popup', 'width=' + width + ',height=' + height +',scrollbars=yes,resizable=no,toolbar=no,status=yes,menubar=no');
	newWindow.focus();
}

function open_print_popup(name,width,height) {
	var newWindow = window.open((name), 'popup', 'width=' + width + ',height=' + height +',scrollbars=yes,resizable=yes,toolbar=yes,status=yes,menubar=no');
	newWindow.focus();
}

//-->
