function demoGo (URLToOpen) {
	var userAgent = navigator.userAgent;
	 if (userAgent.indexOf("Mozilla") != -1) {
		height = screen.height - 38;
		if (userAgent.indexOf("MSIE") != -1) {
   		height = screen.height - 60;
   	}
	 }
   // height = screen.height - 10;
   width = screen.width - 15;
   windowprops = "alwaysRaised,scrollbars=0,titlebar=0,status=0,left=3,top=2,width=" + width + ",height=" + height;
   // URL = "http://www.appsolution.net/ASP/_ica/MyDigitalDesktopDemo.html"
   URL = URLToOpen 
   // URL = URLToOpen + "?h=" + (height) + " w=" + width;
   BDDSWindow = window.open (URL, "ASPDigitalDesktop", windowprops);
}
