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];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function openPopUp(URLStr, winName, left, top, width, height, menubar, scrollbars, resizable) { 
	newWin = window.open(URLStr, winName, 'toolbar=no,location=no,directories=no,status=no,menubar='+menubar+',scrollbars='+scrollbars+',resizable='+resizable+',copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	newWin.focus();
}

function showVideo(id) {
	openPopUp('pop_video.asp?id='+id,'Video',200,200,410,410,0,0,1);
}

function showScript(id) {
	openPopUp('pop_script.asp?id='+id,'Script',200,200,410,410,0,0,1);
}

function goto_URL(object) {
    window.location.href = object.options[object.selectedIndex].value;
}

function MM_preload() {
	MM_preloadImages('/images/btn_home_over.gif','/images/btn_bio_over.gif','/images/btn_resume_over.gif','/images/btn_awards_over.gif','/images/btn_store_over.gif','/images/btn_sroom_over.gif','/images/btn_press_over.gif','/images/btn_contact_over.gif','/images/btn_writer_sm_over.jpg','/images/btn_director_sm_over.jpg','/images/btn_producer_sm_over.jpg','/images/btn_filmmaker_sm_over.jpg')
}

/*************************************************************************
	Expandable content script from flooble.com.
	For more information please visit:
	http://www.flooble.com/scripts/expand.php
	Copyright 2002 Animus Pactum Consulting Inc.
*************************************************************************/

var ie4 = false; if(document.all) { ie4 = true; }

function getObject(id) {
	if (ie4) {
		return document.all[id];
	} else {
		return document.getElementById(id);
	}
}

//function toggle(link, divId) {
//	var lText = link.innerHTML;
//	var d = getObject(divId);
//	if (lText == 'Open +') {
//		link.innerHTML = 'Close -'; d.style.display = 'block';
//	} else {
//		link.innerHTML = 'Open +'; d.style.display = 'none';
//	}
//}

function toggle(link, divId) {
	var lText = link.innerHTML;
	var rExp = /open/gi;


//alert(lText);

	var d = getObject(divId);
	if (lText.search(rExp)>0) {
	//if (lText == '<IMG height=27 alt=Open src=\"/images/ex_open_off.gif\" width=52 border=0>') {

//alert("yes");
		//rExp = /close/gi;
		//newString = new String("open");
		//link.innerHTML = lText.replace(rExp,lText); d.style.display = 'block';
		//alert(link.innerHTML);

		link.innerHTML = '<IMG height=27 alt=Close src=\"/images/ex_close_off.gif\" width=52 border=0>'; d.style.display = 'block';
	} else {

		//rExp = /open/gi;
		//newString = new String("close");
		//link.innerHTML = lText.replace(rExp,lText); d.style.display = 'none';
		//alert(link.innerHTML);

		link.innerHTML = '<IMG height=27 alt=Open src=\"/images/ex_open_off.gif\" width=52 border=0>'; d.style.display = 'none';
	}
}

/*************************************************************************
	This code is from Dynamic Web Coding at http://www.dyn-web.com/
	Copyright 2001-3 by Sharon Paine 
	See Terms of Use at http://www.dyn-web.com/bus/terms.html
	regarding conditions under which you may use this code.
	This notice must be retained in the code as is!
*************************************************************************/

// resize fix for ns4
var origWidth, origHeight;
if (document.layers) {
	origWidth = window.innerWidth; origHeight = window.innerHeight;
	window.onresize = function() { if (window.innerWidth != origWidth || window.innerHeight != origHeight) history.go(0); }
}

function showLayer(id) {
  var lyr = getElemRefs(id);
  if (lyr && lyr.css) lyr.css.visibility = "visible";
}

function hideLayer(id) {
  var lyr = getElemRefs(id);
  if (lyr && lyr.css) lyr.css.visibility = "hidden";
}

function getElemRefs(id) {
	var el = (document.getElementById)? document.getElementById(id): (document.all)? document.all[id]: (document.layers)? getLyrRef(id,document): null;
	if (el) el.css = (el.style)? el.style: el;
	return el;
}