function PopUpWindow(x_strPage, x_strTitle, x_intTopOffSet, x_intLeftOffSet, x_intWidth, x_intHeight, x_strResizeable, x_strScroll, x_strMenu)
{
	var strSettings  ='top='		+ x_intTopOffSet	+ ','
		strSettings +='left='		+ x_intLeftOffSet	+ ','
		strSettings +='width='		+ x_intWidth		+ ','
		strSettings +='height='		+ x_intHeight		+ ','
		strSettings +='resizable='	+ x_strResizeable	+ ',';	//yes, no, auto
		strSettings +='scrollbars='	+ x_strScroll		+ ',';	//yes, no, auto
		strSettings +='toolbar='	+ 'no'       		+ ',';	//yes, no
		strSettings +='location='	+ 'no'       		+ ',';	//yes, no
		strSettings +='menubar='	+ x_strMenu;				//yes, no
	
	win = window.open(x_strPage, x_strTitle, strSettings);
	
	if(parseInt(navigator.appVersion) >= 4)
	{
		win.window.focus();
	}
}

