function bddsGo (username, password) {
	var userAgent = navigator.userAgent;
	 if (userAgent.indexOf("Mozilla") != -1) {
		height = screen.height - 10;
		if (userAgent.indexOf("MSIE") != -1) {
   		height = screen.height - 55;
   	}
	 }
   width = screen.width - 10;
   windowprops = "alwaysRaised,scrollbars=0,titlebar=0,left=0,top=0,width=" + width + ",height=" + height;
   //URL = "http://qwest-ondemand-services.com/ndod/login/login.php?h=" + (height) + "&w=" + width;
   URL = "http://216.57.205.175/frameset.asp?user=" + username + "&password=" + password;
   BDDSWindow = window.open (URL, "QwestBDDS", windowprops);
}

function demoGo () {
	var userAgent = navigator.userAgent;
	 if (userAgent.indexOf("Mozilla") != -1) {
		height = screen.height - 10;
		if (userAgent.indexOf("MSIE") != -1) {
   		height = screen.height - 55;
   	}
	 }
   // height = screen.height - 55;
   width = screen.width - 10;
   windowprops = "alwaysRaised,scrollbars=0,titlebar=0,left=0,top=0,width=" + width + ",height=" + height;
   URL = "http://qwest-ondemand-services.com/ndod/login/demo.php?h=" + (height) + "&w=" + width;
   BDDSWindow = window.open (URL, "QwestBDDS", windowprops);
}
