// JavaScript Document

var newWin = null;
function fbPopUp(fbURL,w,h,sb) {
	if (newWin != null && !newWin.closed)
		newWin.close();
	// Testing if window parameters were passed. If not use the default dimensions
	if (w == null)
		w = 747;
	if (h == null)
		h = 400;
	if (sb == null)
		sb = 'yes';
	newWin = window.open(fbURL, 'newWin', 'width=' + w + ',height=' + h + ',scrollbars=' + sb + '');
	newWin.focus
}

var newWinTwo = null;
function fbPopUpTwo(fbURL) {
	if (newWinTwo != null && !newWinTwo.closed)
		newWinTwo.close();
	newWinTwo = window.open(fbURL, 'newWinTwo', 'width=747,height=400,scrollbars=yes');
	newWinTwo.focus
}

var winDetail = null;
function fbDetail(fbURL,w,h,sb) {
	if (winDetail != null && !winDetail.closed)
		winDetail.close();

	winDetail = window.open('images\/1x1_invisible.gif', 'winDetail', 'width=' + w + ',height=' + h + ',scrollbars=' + sb + '');
	
	winDetail.document.write("<html><head><\/head><body style='padding:0; margin:0;'>")
	winDetail.document.write("<img src="+fbURL+" \/>")
	winDetail.document.write("<\/body><\/html>")
	
	winDetail.focus
}

/* The original base script */
/*function fbPopUp(epuURL) {
	if (newWin != null && !newWin.closed)
		newWin.close();
	newWin = window.open(epuURL, 'newWin', 'width=747,height=400,scrollbars=yes');
	newWin.focus
}*/


/* Right Navigation DHTML Scripts */

var persistmenu="yes" //"yes" or "no". Make sure each SPAN content contains an incrementing ID starting at 1 (id="sub1", id="sub2", etc)
var persisttype="sitewide" //enter "sitewide" for menu to persist across site, "local" for this page only

if (document.getElementById){ //DynamicDrive.com change
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('margin:0;\n')
document.write('</style>\n')
}

function SwitchMenu(obj, e){
	if(document.getElementById){
	
var titles=document.getElementById("masterdiv").getElementsByTagName("div");
for (var i_tem = 0; i_tem < titles.length; i_tem++)
if(titles[i_tem].className.indexOf('titleon')>-1)
titles[i_tem].className=titles[i_tem].className.replace(/ titleon/,'');

	
	var el = document.getElementById(obj);
	var ar = document.getElementById("masterdiv").getElementsByTagName("span"); //DynamicDrive.com change
	
		if(el.style.display != "block"){ //DynamicDrive.com change
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="submenu") //DynamicDrive.com change
				ar[i].style.display = "none";
			}
			el.style.display = "block";
			e.className=e.className+' titleon';
		}else{
			el.style.display = "none";
		}
	}
}

function get_cookie(Name) { 
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { 
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function onloadfunction(){
if (persistmenu=="yes"){
var cookiename=(persisttype=="sitewide")? "switchmenu" : window.location.pathname
var cookievalue=get_cookie(cookiename)
if (cookievalue!=""){
var saved=document.getElementById(cookievalue)
saved.style.display="block"
while(saved=saved.previousSibling)
if(saved.className&&saved.className.indexOf('menutitle')>-1){
saved.className=saved.className+' titleon';
break;
}
}
}
}

function savemenustate(){
var inc=1, blockid=""
while (document.getElementById("sub"+inc)){
if (document.getElementById("sub"+inc).style.display=="block"){
blockid="sub"+inc
break
}
inc++
}
var cookiename=(persisttype=="sitewide")? "switchmenu" : window.location.pathname
var cookievalue=(persisttype=="sitewide")? blockid+";path=/" : blockid
document.cookie=cookiename+"="+cookievalue
}

if (window.addEventListener)
window.addEventListener("load", onloadfunction, false)
else if (window.attachEvent)
window.attachEvent("onload", onloadfunction)
else if (document.getElementById)
window.onload=onloadfunction

if (persistmenu=="yes" && document.getElementById)
window.onunload=savemenustate

/* End of Right Navigation DHTML Scripts */
