
///////////////////////////////////////////////////////
// rollover function
// used for images with following naming convention
//  image source name: "aImageName", ImageName is name of the image
//  image name: "imgName", e.g. imgName_on.gif
//  path: default is "images", can be specified in 3rd argument of function 
//  ext:  default is "gif", can be specified a different extention(e.g. jpg) 
//		  in 4th argument of the function
///////////////////////////////////////////////////////

///////////////////////////////////////////////////////
function imgAdj(imgName, state) {
	var path = "images/";	//default
	var ext = "gif";
	if (arguments[2]) path = arguments[2];
	if (arguments[2]) ext  = arguments[2];
		
 	if (document.images) {
		document.images[imgName].src =  path + imgName + "_" + state + "." + ext;
	}
}

function imgAdj2(imgName, state) {
	var path = "../images/";	//default
	var ext = "gif";
	if (arguments[2]) path = arguments[2];
	if (arguments[2]) ext  = arguments[2];
		
 	if (document.images) {
		document.images[imgName].src =  path + imgName + "_" + state + "." + ext;
	}
}

///////////////////////////////////////////////////////
function imgAdj3(srcName, imgName, state) {
	var path = "images/"; 	//default
	var ext = "gif";
	if (arguments[3]) path = arguments[3];
	if (arguments[4]) ext = arguments[4];

 	if (document.images) {
		document.images[srcName].src =  path + imgName + "_" + state + "." + ext;
	}
}

//////////////////////////////////////////////////////
function NewWin(url,iwidth,iheight,scroll) { 

            var myWin = window.open(url, "NewWin", "width=290,height=259,scrollbars=no,location=no,toolbar=no,menubar=no,resizable=no");
			myWin.focus();
}

//////////////////////////////////////////////////////
function NewWinSingle(url,iwidth,iheight,scroll) { 

            var myWin = window.open(url, "NewWin", "width=291,height=315,scrollbars=no,location=no,toolbar=no,menubar=no,resizable=no");
			myWin.focus();
}
	
theAddressZaydee="zaydee_pop.html";
function doZaydee() {
reWin = window.open(theAddressZaydee,'determined','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=593,height=361,top=100,left=210');
}
theAddressSuliana="suliana_pop.html";
function doSuliana() {
reWin = window.open(theAddressSuliana,'determined','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=593,height=361,top=100,left=210');
}
theAddressNicole="nicole_pop.html";
function doNicole() {
reWin = window.open(theAddressNicole,'determined','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=593,height=361,top=100,left=210');
}
theAddressHollis="hollis_pop.html";
function doHollis() {
reWin = window.open(theAddressHollis,'determined','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=593,height=361,top=100,left=210');
}