function newVGWindow(wName,aspFile,WID,hEight,wiDth,EMail,MailBox,FormNumber) { 
	var myagent = navigator.userAgent; 
	var baseRef = "http://www.voicegreetings.com/scripts/"
	outBound = baseRef + aspFile;
	outBound += "\?wid=" + WID;
	
	if (EMail) {
	    outBound += "\&email=" + unescape(EMail);
	}
	if (MailBox) {
	    outBound += "\&mailbox=" + MailBox;	    
	}	
	if (FormNumber) {
	    outBound += "\&formnumber=" + FormNumber;	    
	}
	window.status = "Opening new window... please wait..."; 
	if (myagent.indexOf("MSIE") > 0) { 
		wiDth = wiDth + 14; 
	} 
	paraMs = "menubar=no,status=yes,location=no,height=" + hEight + ",width=" + wiDth + ",toolbar=no,scrollbars=yes,resizable=yes"; 

	var w=window.open(outBound,wName,paraMs); 
	w.status="Loading... Please Wait..."; 
	if (navigator.appName.indexOf("Microsoft") == -1) { 
		w.focus(); 
	} 
}



