// JavaScript Document
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function preloadImages() {
	if (document.images) {
		menu_Home_over = newImage("../images/menu/menu_item_bg_hover.png");
		preloadFlag = true;
	}
}

function PhotoWindow(FileName, width, height){
	window.open(FileName,'','width='+width+',height='+height+',toolbar=no,directories=no,location=no,menubar=no,status=no'); 
}

// function to open pedigree windows
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

