// JavaScript Document
function PopIt(filename, h, w){ 
	pos_x = (screen.width/2) - (w/2)
	pos_y = (screen.height/2) - (h/2)
	popup = window.open(filename,"popDialog","height="+h+",width="+w+",left="+pos_x+"top="+pos_y+",scrollbars=no,status=yes")
}