function newWin(url,wWidth,wHeight){
  wx=300-(wWidth/2),wy=100;
  var sz=",width="+wWidth+",height="+wHeight
  nwin=window.open(url,'','left='+wx+',top='+wy+',screenX='+wx+',screenY='+wy+',resizable=yes'+sz);
}

function onClickRate() {
	document.SELECTION.anyRating.checked=false;
	  if (document.SELECTION.selfCateringHotel)
	  document.SELECTION.selfCateringHotel.checked=false;
}
 
function onClickAny() {
  document.SELECTION.rating1.checked=false;
  document.SELECTION.rating2.checked=false;
  document.SELECTION.rating3.checked=false;
  document.SELECTION.rating4.checked=false;
  document.SELECTION.rating5.checked=false;
}

function onClickAnyStar() {
  document.SELECTION.rating2.checked=false;
  document.SELECTION.rating3.checked=false;
  document.SELECTION.rating4.checked=false;
  document.SELECTION.rating5.checked=false;
}

function onClickAnyStarRating() {
  document.SELECTION.lmnStar2.checked=false;
  document.SELECTION.lmnStar3.checked=false;
  document.SELECTION.lmnStar4.checked=false;
  document.SELECTION.lmnStar5.checked=false;
}
function onClickStarRate() {
	document.SELECTION.lmnAnyStar.checked=false;
	  if (document.SELECTION.selfCateringHotel)
	  document.SELECTION.selfCateringHotel.checked=false;
}
function RenderPopup(windowsource, windowname, width,
	height, scrollbars, directories, location,
	menubar, status, toolbar, resizable) {
	var windowfeatures = 'width=' + width +
	',height=' + height + ',directories=' + directories +
	',location=' + location + ',menubar=' + menubar +
	',scrollbars=' + scrollbars + ',status=' + status +
	',toolbar=' + toolbar + ',resizable=' + resizable;
	DisplayWindow = window.open(windowsource, windowname, windowfeatures);
	DisplayWindow.focus();
	} 