function popComments(place,name,width,height,options)
	{
	if (!width){
		width = 657;
	}
	if (!height){
		height = 450;
	}	
	if (options == 1){
		var properties = 'width='+width+',height='+height+',directories=no,history=no,statusbar=no,scrollbars=yes,resizable=no,menubar=no,personalbar=no,toolbar=no,locationbar=no';
	} else if (options == 2) {
		var properties = 'width='+width+',height='+height+',directories=no,history=no,statusbar=no,scrollbars=yes,resizable=no,menubar=yes,personalbar=no,toolbar=no,locationbar=no';
	} else {
		var properties = 'width='+width+',height='+height+',directories=no,history=no,statusbar=no,scrollbars=no,resizable=no,menubar=no,personalbar=no,toolbar=no,locationbar=no';
	}
	
	msgWindow = window.open(
	  place,
	  name,
	  properties
	);
	msgWindow.focus();
}

function detectWinIE5_0(){
	var agt = navigator.userAgent.toLowerCase();
	var	browser = navigator.appName;
	var	appVer = parseInt(navigator.appVersion);

	this.ie  = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
	this.ie3 = (this.ie && (appVer < 4));
	this.ie4 = (this.ie && (appVer == 4) && (agt.indexOf("msie 4") != -1) );
	this.ie5 = (this.ie && (appVer == 4) && (agt.indexOf("msie 5.0") != -1) );
	this.ie5_5up =(this.ie && !this.ie3 && !this.ie4 && !this.ie5);

	if(this.ie && !this.ie5_5up){
		 top.location.replace('http://www.channelonenetwork.com/browserupgrade.html');
	}
}
detectWinIE5_0();