function setURL(str) {
	window.location="http://www.comcen.com.au/support/main/"+str; 
}	

function sendFeedback(form,choice,div){
	
	if(choice == 'no'){
		document.getElementById(div).value = '';
		div.value = '';
	}
	
	form.submit();
}

function showDIV(showdiv){
	document.getElementById(showdiv).style.display = '';
}

function hideDIV(showdiv){
	document.getElementById(showdiv).style.display = 'none';
}

function saveInfoToHidden(info,infodiv){
	document.getElementById(infodiv).value = info;
}

function buttonPress(src,imgid){
	document.getElementById(imgid).src = src;
}

function feedbackbutton(imgsrc,imgid,othersrc,otherimgid,info,infodiv,showdiv){
	showDIV(showdiv);
	saveInfoToHidden(info,infodiv);
	buttonPress(imgsrc,imgid);
	buttonPress(othersrc,otherimgid);
}

function feedbackbuttonsubcat(imgsrc,imgid,showdiv){
	showDIV(showdiv);
	buttonPress(imgsrc,imgid);
}






