function OpenWindow (URL, WinName, Features) { //v2.0 
	window.open(URL, WinName, Features);
}
	
function popPage(page, width, height){				
		var the_date = new Date()
		var the_time = the_date.getTime()
		var URL = page
		var WinName = 'displayWindow' + the_time
		if (width == 0 || width ==''){
			width = 800
			height = 600
		}
				
		var Features = 'width=' + width + ',height=' + height + ', resizable=yes,scrollbars=yes,menubar=yes,status=yes'
		window.open(URL, WinName, Features);
}
function doAlert(){
	alert('here');
}	