function launchpad(url, wdth, hght) {
	if (url.indexOf('.asp') ==-1) {
		toUrl = url + ".asp";
	} else {
	 	toUrl = url;	
	}
	var Launch1=window.open(toUrl,"","toolbar=no,width="+wdth+",height="+hght+",directories=no,resizable,menubar=no,location=no,copyhistory=no,scrollbars");
}
