
function mouseOver(e) {
	e.src="images/"+ e.name + "_hover.jpg"
}

function mouseOut(e) {
	e.src="images/" + e.name +".jpg"
}

function popup(filename, title) {
	window.open(filename,title, "location=0,menubar=0,width=500,height=500,toolbar=0,scrollbars=yes,status=0,resizeable=0");
}

function picture_popup(filename, title) {

//var w = 480, h = 340;

//if (document.all || document.layers) {
   w = screen.availWidth;
   h = screen.availHeight;
//}

var popW = 650, popH = 650;

//var leftPos = (w-popW)/2, topPos = (h-popH)/2;

window.open(filename,title,"location=0,menubar=0,width=" + popW + ",height=" + popH + ",top=" + 0 + ",left=" + 0 + ",toolbar=0,scrollbars=0,status=0,resizeable=0");

//window.open(filename,title, "location=0,menubar=0,width=500,height=200,toolbar=0,scrollbars=yes,status=0,resizeable=0");
}

function password_popup(filename, title) {

//var w = 480, h = 340;

//if (document.all || document.layers) {
   w = screen.availWidth;
   h = screen.availHeight;
//}

var popW = 500, popH = 200;

var leftPos = (w-popW)/2, topPos = (h-popH)/2;

window.open(filename,title,"location=0,menubar=0,width=" + popW + ",height=" + popH + ",top=" + topPos + ",left=" + leftPos + ",toolbar=0,scrollbars=0,status=0,resizeable=0");

//window.open(filename,title, "location=0,menubar=0,width=500,height=200,toolbar=0,scrollbars=yes,status=0,resizeable=0");
}
