function easyPopUpWindow(strURL, strName, strFeatures)
{
	var strBrowserType = navigator.appName;
	var strBrowserVersion = navigator.appVersion;
	
	// check browser type
	if (strBrowserType.indexOf('Microsoft')>=0 && strBrowserVersion.indexOf('MSIE 4.0;')>=0) 
	{	
		popupWindow = showModalDialog (strURL);				
		popupWindow = showModalDialog (strURL + '?Style=' + strFeatures, strURL, strFeatures);				
		popupWindow = window.open(strURL,"AAAA",strFeatures);		
		name.innerText = popupWindow
	} else 
	{
		popupWindow = window.open(strURL, '', strFeatures);
	}
}