
window.onload = prepareLinks;

function prepareLinks() {
	var links = document.getElementsByTagName("a");
	
	for (var i = 0; i < links.length; i++) {
		if (links[i].className == "popup") {
			links[i].onclick = function() {
				openFile(this.getAttribute("href"));
				return false;
			}
		}
	}
}


function openSmiley() {
var w=window.open("gbook/smileys.htm", "smileys", "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=320,height=320");
  if(!w.opener)
  {
  w.opener=self;
  }
}

function popUp(URL) {
var day = new Date();
var id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=550,height=350,left = 100,top = 100');");
}

function openFile(URL) {
	window.open(URL, "_blank");
}
