function new_winopen(v_FilePath, width, height, resizable, scrollbars)
{
	var w=width, h=height;
	var m_prop="width=" + w + ", height=" + h + 
		", top="+ (screen.height/2 - h/2) + ", left=" + (screen.width/2 - w/2) +
		", resizable=" + resizable + ", scrollbars=" + scrollbars; 
	window.open(v_FilePath, "NURIA", m_prop);
}