
function fOpenWindow(p_url,p_width,p_height,p_resize,p_name){
	var win=fOpenWindowRet(p_url,p_width,p_height,p_resize,p_name);
}

function fOpenWindowRet(p_url,p_width,p_height,p_resize,p_name){
	if(p_width > window.screen.width * 0.9){
		p_width=window.screen.width * 0.9;
		p_resize="yes";
	}
	if(p_height > window.screen.height * 0.9){
		p_height=window.screen.height * 0.9;
		p_resize="yes";
	}
	
	w_left	= window.screen.width / 2 - p_width / 2;
	if(w_left < 0){w_left=0;}
	
	w_top	= window.screen.height / 2 - p_height / 2 - 16;
	if(w_top < 0){w_top=0;}
	
	w_win=window.open(p_url,p_name,"left=" + w_left + "px,top=" + w_top + "px,width=" + p_width + "px,height=" + p_height + "px,location=no,menubar=no,status=yes,resizable=no,toolbar=no,resizable=" + p_resize + ",scrollbars=" + p_resize);
	w_win.focus();
	return w_win;
}


