// Copyright 2008 First Direct. All rights reserved

//msc cookie
if (self.location.search.search(/msc=([^&=$]*)/) != -1) {
	var msc = RegExp.$1;
	var expires = new Date((new Date()).getTime() + (1000 * 3600 * 24 * 30)).toGMTString();
	var domain = self.location.hostname.replace(/^\w+/,"") || "";
	document.cookie = "fd_msc=" + msc + ";expires=" + expires +  ";path=/" + (domain ? ";domain=" + domain : "");
	var meta = document.createElement("meta");
	meta.setAttribute("name", "WT.mc_id");
	meta.setAttribute("content", msc);
	document.getElementsByTagName("head").item(0).appendChild(meta);
}

//used to highlight content menu tabs
function prodInfoMenu(linkId) {
	var pim = document.getElementById(linkId);
	pim.className = "fdProductInfoMenuTabSelected";
	for (var previous = pim.previousSibling; previous && (previous.nodeType != 1); previous = previous.previousSibling);
	previous && (previous.className = "fdProductInfoMenuTabSelectedLeftSide");
	for (var next = pim.nextSibling; next && (next.nodeType != 1); next = next.nextSibling);
	next && (next.className = "fdProductInfoMenuTabSelectedRightSide");
}

//used to highlight content menu links
function prodInfoIndetailMenu(linkId) {
	var piim = document.getElementById(linkId);
	piim.className = "selected";
}

//uk resident footer
function ukResident() {
	if (!checkCustCookie()) {
		document.write('This site is intended for residents of the United Kingdom only.');
	}
}

function openNewWindow(strURL,strWidth,strHeight){	
	window.open(strURL,"fd_popup","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=" + strWidth + ",height=" + strHeight + ",top=10,left=10").focus();
}