var PopUp

function CheckBrowser () {

alert("CheckBrowser was called");
}

function holder() {
if (navigator.appName.indexOf("Microsoft") == -1) {
alert("You must use Internet Explorer on this Online Novel");

}
else {alert("everything is O.K.");}
}

function showlayer( layer) {

document.all(layer).style.top = window.event.offsetY + 10;
if (window.event.offsetX < 200) {
	document.all(layer).style.left = window.event.offsetX;
	}
else 
	{document.all(layer).style.left = window.event.offsetX-150;}

document.all(layer).className = "Show";
}

function hidelayer( layer) {
document.all(layer).className = "Hide";
}

function donothing() {}

function PopUpWindow(URL) {
aPopUp = window.open(URL,'PopUp',
"top=115,left=240,width=330,height=250,scrollbars")
aPopUp.document.close()
}                 

