function openNew(URL,Name,width,height) { //v2.0 
	var PosX = (screen.width-width)/2; 
	var PosY = (screen.Height-height)/2; 
	features = "width="+width+",height="+height+",top="+PosY+",left="+PosX; 
	window.open(URL,Name,features); 
} 
