// JavaScript Document
<!--

function PopItNo(filename, h, w){  
	popup = window.open(filename,"popDialog","height="+h+",width="+w+",scrollbars=no")  
	if ( popup.document.close() ) {
		popup.document.close()
	}
}
// -->
<!--

function PopIt(filename, h, w){  
	popup = window.open(filename,"popDialog","height="+h+",width="+w+",scrollbars=yes")  
	if ( popup.document.close() ) {
		popup.document.close()
	}
}
// -->