<!--
function PopUp_yes(filename,window_name, h, w)
	{
		popup = window.open(filename, window_name, "_blank","height="+h+",width="+w+",scrollbars=yes, resizable=no");
			if ( popup.document.close() )
				{
					popup.document.close();
				}
	}

function PopUp_no(filename,h, w)
	{
		popup = window.open(filename,"_blank", "height="+h+",width="+w+",scrollbars=no, resizable=no");
			if ( popup.document.close() ) 
				{
					popup.document.close();
				}
	}
// -->
