

function LaunchPopWindow(url)

{

        var w = window.open(url,"","width=425,height=550,scrollbars=no, resizable=no, status=no,toolbar=no,menubar=no,location=left,directories=no");

        //return true;

}

function LaunchPopWindowLarge(url)

{

        var w = window.open(url,"","width=525,height=550,scrollbars=no, resizable=no, status=no,toolbar=no,menubar=no,location=left,directories=no");

        //return true;

}



function LaunchFAQWindow(url)

{

        var w = window.open(url,"","width=615,height=800,scrollbars=yes, resizable=no, status=no,toolbar=no,menubar=no,location=left,directories=no");

        //return true;

}



function LaunchCalendarWindow(url)

{

        var w = window.open(url,"","width=850,height=700,scrollbars=no, resizable=no, status=no,toolbar=no,menubar=no,location=no,directories=no");

        //return true;

}



function create_anchor(url){

	screenheight = screen.height;

	if (window.innerHeight){

		documentheight = document.defaultView.getComputedStyle(document.documentElement,null).getPropertyValue("height");

	}else{

		documentheight = document.body.clientHeight;

	}

	

	diff = screenheight - documentheight;

	

	if (screen.height > 768){

		if (diff < 160) {

			document.write(url);  

		}

	}else{

		if (diff < 0){

			document.write(url);  

		}

	}

}