//<script language=javascript>

var callobj;
var popupobj;

var iebrowser = navigator.appName == 'Microsoft Internet Explorer';
iebrowser = false;

function popup(url, arg, height, width) {
	callobj = arg;
	if (height==0)
		height = 300;
	if (width==0)
		width = 400;
	if (iebrowser)
		window.showModalDialog(url,
							window,
							'dialogHeight:'+height+'px;dialogWidth:'+width+'px;center:yes;scroll:no;resizable:no;status:no;unadorned:yes');
	else {
		url = url.replace("subs","pages");
		window.location = url;
	}
}

function popups(url, arg, height, width) {
	callobj = arg;
	if (height==0)
		height = 300;
	if (width==0)
		width = 400;
	if (iebrowser)
		window.showModalDialog(url,
							window,
							'dialogHeight:'+height+'px;dialogWidth:'+width+'px;center:yes;scroll:yes;resizable:yes;status:no;unadorned:yes');
	else {
		url = url.replace("subs","pages");
		window.location = url;
	}
}

function popupw(url, height, width) {
	if (height==0)
		height = 300;
	if (width==0)
		width = 400;
	if (iebrowser) 
		window.open(url, 
				'name',
				'menubar=1,toolbar=1,location=0,directories=0,status=1,scrollbars=1,resizable=1,dependent=1,width='+width+',height='+height+',left=0,top=0');
	else {
		url = url.replace("subs","pages");
		window.location = url;
	}
}



//</script>