//Version 1
//Ref No: 0071/2005/05
//This javascript is for calling a servlet and recording where the link links to

function thirdparty(linkto){
    //var fulllink='+escape(linkto)+;  //added escape to change the parameter special character to unicode
	window.open('/disclaimer.shtml?' +linkto,'thirdparty','scrollbars=no,status=no,toolbar=no,personalbar=no,menubar=no,locationbar=no,resizable=no,width=350,height=140,top=150,left=240');
  }


