// JavaScript Document
function openLookWindow(fileName,w,h){
	
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0; 
	TopPosition = 40; 
	openwindow=window.open(fileName,'','scrollbars=yes,resizable=no,fullscreen=no,status=yes,width='+w+',height='+h);
	//openwindow.resizeTo(w,h); 
	openwindow.moveTo(LeftPosition,TopPosition); 
}
