	document.filmForm.selectFilm.selectedIndex=0;								function processPoll() {		var selectedIndex = -1;		for (var i=0;i<document.pollForm.pollAnswer.length;i++) {			if (document.pollForm.pollAnswer[i].checked) selectedIndex = i		}		var URL = "http://motorola.whiterunkle.com/mobilegallery/poll.aspx?pollAnswer=" + document.pollForm.pollAnswer[selectedIndex].value		if (selectedIndex > -1) {			var aWindow = window.open(URL,"pollWindow","toolbar=no,width=100,height=100,status=no,scrollbars=no,resizable=no,menubar=no");			var oPoll = getCell('pollTable');			oPoll.style.display = 'none';			var oPoll = getCell('pollThanks');			oPoll.style.display = 'block';		}		return false;	}	function processFilmSelect() {		var selObj = document.filmForm.selectFilm		if (selObj.options[selObj.selectedIndex].value != "") {			cmsOpenPopup(selObj.options[selObj.selectedIndex].value,'film','583','483','','',0,0,0,0,0,0,0)			selObj.selectedIndex=0;		}		return false;	}		function processStorySelect() {		var selObj = document.filmForm.selectFilm		if (selObj.options[selObj.selectedIndex].value != "") {			cmsOpenPopup(selObj.options[selObj.selectedIndex].value,'film','450','250','','',0,0,0,0,0,0,0)			selObj.selectedIndex=0;		}		return false;	}	function processJoin() {		var joinFirst = document.joinForm.joinFirst.value + "";		var joinLast = document.joinForm.joinLast.value + "";		var joinEmail = document.joinForm.joinEmail.value + "";					if (joinFirst != "" && joinFirst != "First Name" && joinLast != "" && joinLast != "Last Name" && joinEmail != "" && joinEmail != "Email Address") {			var URL = "http://motorola.whiterunkle.com/mobilegallery/join.aspx?joinFirst=" + joinFirst + "&joinLast=" + joinLast + "&joinEmail=" + joinEmail			var aWindow = window.open(URL,"joinWindow","toolbar=no,width=100,height=100,status=no,scrollbars=no,resizable=no,menubar=no");			var oJoin = getCell('joinTable');			oJoin.style.display = 'none';			var oJoin = getCell('joinThanks');			oJoin.style.display = 'block';		}		return false;	}			function ToggleDisplay(buttonImg, object, buttonOnImage, buttonOffImage) {		var buttonOn = buttonOnImage + '';		var buttonOff = buttonOffImage + '';				if (buttonOn == '') buttonOn = 'images/2807114_1.gif';		if (buttonOff == '') buttonOff = 'images/2807116_1.gif';		if (document.getElementById && document.getElementById(object) != null) {			//alert("found using getElementById");			if (document.getElementById(object).style.visibility == 'hidden') {				node = document.getElementById(object).style.visibility='visible';				if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOn;			} else if (document.getElementById(object).style.visibility == 'visible') {				node = document.getElementById(object).style.visibility='hidden';				if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOff;			}			if (document.getElementById(object).style.display == 'none') {				node = document.getElementById(object).style.display='block';				if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOn;			} else if (document.getElementById(object).style.display == 'block') {				node = document.getElementById(object).style.display='none';				if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOff;			}		} else if (document.layers && document.layers[object] != null) {			//alert("found using document.layers");			if (document.layers[object].visibility == 'hidden')	{				document.layers[object].visibility = 'visible';				if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOn;			} else if (document.layers[object].visibility == 'visible') {				document.layers[object].visibility = 'hidden';				if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOff;			}			if (document.layers[object].display == 'none')	{				document.layers[object].display = 'block';				if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOn;			} else if (document.layers[object].display == 'block') {				document.layers[object].display = 'none';				if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOff;			}		} else if (document.all) {			//alert("found using document.all");			if (document.all[object].style.visibility) {				if (document.all[object].style.visibility == 'hidden') {					document.all[object].style.visibility = 'visible';					if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOn;				} else if (document.all[object].style.visibility == 'visible') {					document.all[object].style.visibility = 'hidden';					if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOff;				}			}			if (document.all[object].style.display) {				if (document.all[object].style.display == 'none') {					document.all[object].style.display = 'block';					if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOn;				} else if (document.all[object].style.display == 'block') {					document.all[object].style.display = 'none';					if (document.getElementById(buttonImg)) document.getElementById(buttonImg).src = buttonOff;				}			}		}	}		function cmsOpenPopup(href, name, width, height, x, y, menu, status, scroll, loc, resize, title, toolbar){		var attributes = '';		if (width.length > 0) attributes = attributes + ',width=' + width;		if (height.length > 0) attributes = attributes + ',height=' + height;		if (x.length > 0) attributes = attributes + ',screenx=' + x;		if (x.length > 0) attributes = attributes + ',left=' + x;		if (y.length > 0) attributes = attributes + ',screeny=' + y;		if (y.length > 0) attributes = attributes + ',top=' + y;		attributes = attributes + ',menubar=' + (menu==1?'yes':'no');		attributes = attributes + ',status=' + (status==1?'yes':'no');		attributes = attributes + ',scrollbars=' + (scroll==1?'yes':'no');		attributes = attributes + ',location=' + (loc==1?'yes':'no');		attributes = attributes + ',titlebar=' + (title==1?'yes':'no');		attributes = attributes + ',toolbar=' + (toolbar==1?'yes':'no');		attributes = attributes + ',resizable=' + (resize==1?'yes':'no');		attributes = attributes.substring(1,attributes.length);		var cmsPopup = window.open(href, name, attributes)	}