//Martin's quick and dirty (also slick and purdy) PNG fix for IE
//var isIE_PNG = (navigator.appName == "Microsoft Internet Explorer" && navigator.userAgent.indexOf('Opera') == -1);

//function pngImage( imgSource ) {
	
  //if(isIE_PNG) document.write('<img src="/shared/wow-com/images/layout/pixel.gif" style="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='+imgSource+');">');
  //else document.write("<img src="+imgSource+">");
  
//}

function change_form_value( formID, fieldID, newValue ) {
	
	var frm = document.forms[formID];
	
	frm[fieldID].value = newValue;
	frm.submit();
		
}

function set_form_value( formID, fieldID, newValue ) {
	
	var frm = document.forms[formID];
	
	frm[fieldID].value = newValue;
		
}

function set_form_value( formID, fieldID, newValue ) {
	
	var frm = document.forms[formID];
	
	frm[fieldID].value = newValue;
		
}

function submit_form( formID ) {
	
	var frm = document.forms[formID];
	
	frm.submit();
		
}

function form_clear( fieldID ) {
	
	fieldID.value = '';
	
}

function show_ratings(id) {
  var obj = document.getElementById(id);
  
  obj.style.display = "inline";
}

function hide_ratings(id) {
  var obj = document.getElementById(id);
  
  obj.style.display = "none";
}