function OpenResized(filename,wwidth,wheight) {
	wleft=(window.screen.width/2)-(wwidth/2)
	scrollbars="yes"
	newheight=wheight
	if ((newheight+100)>window.screen.height) {
	   scrollbars="yes"
	   newheight=(window.screen.height-160)
	}
    wtop=(window.screen.height/2)-(newheight/2)
	window.open(filename,"","scrollbars="+scrollbars+",resizable=no,location=no,status=no,toolbar=no,menubar=no,width="+wwidth+",height="+newheight+",left="+wleft+",top="+wtop)
}
