function showWindow(path,width,height,title) { 
 var m_width; 
 var m_height;
 
 m_width = (width == null) ? 636 : width;
 m_height = (height == null) ? 550 : height;
 path = (title == null) ? path : path + "&title=" + title;
 
 window.open(path,'','width='+m_width+',height='+m_height+',top=30,left=125,Resizable=1,Scrollbars=1,menubar,status');
 return false;
}
		       