function openWindow(strURL, width, height) {

	windowHandle = window.open(strURL, "Sycor", "width=" + width + ",height=" + height + ",left=100,top=200");
	windowHandle.focus();

}

function bookmarkToogle() {

	var linkStatus = document.getElementById("footbookmark").style.display;

	if(linkStatus=="none") {
		document.getElementById("footbookmark").style.display = "inline";
	} else {
		document.getElementById("footbookmark").style.display = "none";
	}

}