
var WindowObjectReference = null; // global 

function popStill(strUrl, strWindowName)	{

	WindowObjectReference = window.open(strUrl, strWindowName, "width=420,height=500,resizable=no,scrollbars=no,status=yes");
	WindowObjectReference.focus();
	}

function popMovie(strUrl, strWindowName) {

	WindowObjectReference = window.open(strUrl, strWindowName, "width=750,height=600,resizable=no,scrollbars=no,status=yes");
	WindowObjectReference.focus();
	}


function changeSubhead (tagID) {
	tags = new Array("&nbsp;", "Director", "with SX-70", "Composer", "so far", "networking", "in touch");

	subhead=document.getElementById("subhead");
	subhead.innerHTML = tags[tagID];
	}


function changeFilmsMenuLower (tagID) {
	tags = new Array("<span id='films_menuLower'><a href='films.html' onmouseover='javascript:changeFilmsMenuUpper(1)' onmouseout='javascript:changeFilmsMenuUpper(0)'>German</a></span>", "<span class='current'>German</span>");

	subhead=document.getElementById("films_menuLower");
	subhead.innerHTML = tags[tagID];
	}


function changeFilmsMenuUpper (tagID) {
	tags = new Array("<span id='films_menuUpper'><a href='films.html' onmouseover='javascript:changeFilmsMenuLower(1)' onmouseout='javascript:changeFilmsMenuLower(0)'>Commercials</a></span>", "<span class='current'>Commercials</span>");

	subhead=document.getElementById("films_menuUpper");
	subhead.innerHTML = tags[tagID];
	}

