function popUpScreen(url, width, height) {
	var browser=navigator.appName;
	
	if (browser == "Microsoft Internet Explorer") {
		showPopWin(url, width, height + 100, null);
	}
	else {		
		showPopWin(url, width, height + 100, null);
	}
}
