function openNewWindow(URLtoOpen, windowName, windowFeatures) { // for opening the terms & conditions & privacy policy
	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}

function resizeSWF(nHeight) {
	//alert("Resizing SWF to: " + nHeight);
	document.getElementById("citi_loader").style.height = nHeight;
}

function adjustSWFHeight() {
	//alert("Window Height: " + document.body.clientHeight);
	if(document.body.clientHeight <= 678)
		resizeSWF('100%');
	else
		resizeSWF('100%');
}