/*This js is used to open disclainer page and then redirect the user to the external link 
passed as QS from the disclaimer page */
function popwin(url)
{
	window.open(url, 'popwin','left=125 ,top=200, width=775, height=325,resizable=no,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
	return false;
}
function redirect()
{
	query = '' + this.location;
	query = query.substring((query.indexOf('?')) + 1);
	keyValue = query.substring((query.indexOf('=')) + 1);
	url="http://" + keyValue ;
	window.open(url, 'redirect_popwin');	
	window.close();
}
