<!--

function popWin(theURL,winWidth,winHeight,showLocation,showMenu,scrollWin,resizeWin){
	var winX = (screen.width - winWidth) / 2;
	var winY = (screen.height - winHeight) / 2.6;
	windowAttributes= ('width='+winWidth+',height='+winHeight+'location='+'showLocation'+',menubar='+showMenu+',scrollbars='+scrollWin+",resizable="+resizeWin+",left="+winX+",top="+winY);
	window.open(theURL, "", windowAttributes);
}
function randomURL(theStr){
	var s = new String(theStr);
	s += (s.search(/\?/) != -1) ? '&' : '?';
	s += 'randomurl=' + Math.round(Math.random() * 1000000);
	return s;
}
function popSite(){
	window.location = "main.htm";
	return false;
}
function popContact(){
	popWin(randomURL("contact.php"), "400", "200", "no", "no", "no", "no");
}
function popPhotos(id) {
	popWin(randomURL("photos.php?id="+id), "880", "1024", "no", "no", "yes", "yes");
}
function popVideo(url){
	popWin(randomURL("video.php?pop=true&url="+url), "1024", "768", "no", "no", "no", "yes");
}
// -->