var preloaded = "false";
function preload() {

_main = new Image;
_main.src = "./pics/main.gif";
_quotes = new Image;
_quotes.src = "./pics/quotes.gif";
_visual = new Image;
_visual.src = "./pics/visual.gif";
_write = new Image;
_write.src = "./pics/write.gif";
_comic = new Image;
_comic.src = "./pics/comic.gif";
_board = new Image;
_board.src = "./pics/board.gif";
_past = new Image;
_past.src = "./pics/past.gif";
_links = new Image;
_links.src = "./pics/links.gif";

main2 = new Image;
main2.src = "./pics/main2.gif";
quotes2 = new Image;
quotes2.src = "./pics/quotes2.gif";
visual2 = new Image;
visual2.src = "./pics/visual2.gif";
write2 = new Image;
write2.src = "./pics/write2.gif";
comic2 = new Image;
comic2.src = "./pics/comic2.gif";
board2 = new Image;
board2.src = "./pics/board2.gif";
past2 = new Image;
past2.src = "./pics/past2.gif";
links2 = new Image;
links2.src = "./pics/links2.gif";

preloaded = "true";
}

function imageFlip(id,img) {
	if(preloaded != "true") return;
	document.images[id].src = eval(img + ".src");
}

function openNewdow(target, type, width, height) {
	newdow = window.open(''+target+'', ''+type+'', 'toolbar=0, location=0, directories=0, status=0, menubar=0 scrollbars=0, resizable=0, width='+width+', height='+height+'');
	newdow.focus();
}