function feedbackForm() {
var theURL = document.URL; 
var wgwebCancel = "";
var wgwebIndex = document.URL.indexOf('wgweb.dll');

try{
	if (wgwebIndex != -1){
		theURL = theURL.substring(0,wgwebIndex);
		wgwebCancel += document.stylesearch.html.value;

		if (document.stylesearch.html.value == "style.html"){
		wgwebCancel += "?style=" + document.forms[1].styleid.value + "&assort=" + document.forms[1].assort.value;
		}
	}
}
catch(e){}
	
var newWindow = window.open("feedback-form-07nov.html?" + document.URL + wgwebCancel, "FeedbackForm", "width=605,height=505");
newWindow.focus();

}

                  
