// JavaScript Document

var gotoPublicCervarixMSG = "This link will redirect you to information about Cervarix on GSK's product information site for members of the public (http://public.gsk.co.uk/products/cervarix). Please read the terms and conditions of any website you link to.";

function leavingGSK1(url) { 
	if (confirm(gotoPublicCervarixMSG)) {
		window.location = url;
	}
}


var gotoProfessionalCervarixMSG = "This link will redirect you to information about Cervarix on GSK's product information site for healthcare professionals (http://hcp.gsk.co.uk/products/cervarix). Please read the terms and conditions of any website you link to.";

function leavingGSK1(url) { 
	if (confirm(gotoProfessionalCervarixMSG)) {
		window.location = url;
	}
}


var gotoCCinfoMSG = "This link will redirect you to GSK's disease awareness site about cervical cancer for members of the public. Please read the terms and conditions of any website you link to.";

function leavingGSK2(url) { 
	if (confirm(gotoCCinfoMSG)) {
		window.location = url;
	}
}

