function WinOpen(height,width,url)
{
 window.open(
  url,
  "RegHelp",
  "toolbar=no,location=no,resizable=yes,scrollbars=yes,status=no,height="+height+",width="+width);
}


// popname: window name
// fullattr: window properties minus height and width.  Remove any trailing commas in function call!

function WinOpenFullAttr(height,width,url,popname,fullattr)
{
 window.open(
  url,
  popname,
  fullattr + "," + "height=" + height + ",width=" + width);
}


function send_to_omniture(myText) {
	var sendThis = myText;
	//alert(sendThis);
	var s=s_gi(s_account);
	s.linkTrackVars='prop1,prop9,server';
	s.linkTrackEvents='None';
	s.server='homeboxoffice.co.uk';
	s.prop1="International"
	s.prop9=sendThis;
	s.t(this,'o',myText);
}

