function openpopup(url){
	imgvu=window.open(url,"popUpWinVaughn","height=560,width=254,toolbar=no,scrollbars=no,menubar=no");
	imgvu.focus();
}

function imgOn(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + '_on.src');
}
}

function imgOff(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + '_off.src');
}
}

function imgIn(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + '_in.src');
}
}

function spawnWindow(URL,Name,features) { 
    window.open(URL,Name,features); 
}

function openPhoto(pic,w,h,id)
{
	if (w==''){
		w = 640;
	}
	if (h==''){
		h = 480;
	}
	win = window.open("images/photo/"+pic, id,"height="+h+",width="+w+",toolbar=no,scrollbars=yes,menubar=no");
}



function expandit(curobj,arr){
	e = '';
	ns6=document.getElementById&&!document.all?1:0;
	e = ns6?document.getElementById(curobj).style:document.all[curobj].style;
	
	//alert(e.display);
	if (e.display == "none"){
		e.display = "";
		//document[arr].src = arron.src;
	} else {
		e.display = "none";
		//document[arr].src = arroff.src;
	}
}
