function getPage (url, nw) {
	if (nw == 0) {
		location.href = url;
 	} else {
		window.open(url,"_blank","width=750,height=500,toolbar=yes,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes");
	}
}

function goURL (url, obj, nw) {
	if (!(nw)) {
		nw = 0;
	}
	if (obj) {
		blinkOnClick(obj);
		window.setTimeout("getPage('" + url + "', " + nw + ")", blinkTime * (blinkCount + blinkAfterDelay));
	} else {
		getPage(url, nw);
	}
}

function showhide(obj_name) {
	obj = eval("window." + obj_name);
	if (obj.style.display == "none") {
		obj.style.display = "block";
	} else {
		obj.style.display = "none";
	}
}

function bold(obj_name) {
	obj = eval("window." + obj_name);

	if (obj.style.fontWeight == "") {
		obj.style.fontWeight = "bold";
	} else {
		obj.style.fontWeight = "";
	}
}

// JS Script from MM DreamWaver

function MM_preloadImages() { //v3.0
	var d=document;
	if(d.images) {
		if(!d.MM_p) d.MM_p=new Array();
		var i,j=d.MM_p.length,a=MM_preloadImages.arguments;
		for(i=0; i<a.length; i++) {
			if (a[i].indexOf("#")!=0) {
				d.MM_p[j]=new Image;
				d.MM_p[j++].src=a[i];
			}
		}
	}
}
