
/* SELECT BOX CHANGE */

function linkme(loc) {
	if(loc.value)
	{
		ref = loc.options[loc.selectedIndex].value;
		location.href = ref;
	}
}

/* POPUPS */

function win(datei, breite, hoehe, links, oben) {
	props = "scrollbars=yes,status=no,titlebar=no,location=no,menubar=no,width="+breite+", height="+hoehe+"";
	nwin = window.open(datei,"popwin",props);
	nwin.moveTo(links, oben);
}

function simpleWin(id) {
	props = "scrollbars=yes,status=no,titlebar=no,location=no,menubar=no,width=650, height=400, top=0, left=0";
	nwin = window.open( "pop.php?c="+id, "", props );
}

/* AJAX load content */

function getHTML(theURL, thePARS) {
	var url = theURL;
	var pars = thePARS;
	var myAjax = new Ajax.Updater(
				{success: 'movieholder'}, 
				url, 
				{
					method: 'get', 
					parameters: pars, 
					onFailure: reportError
				});
	
}

function reportError(request)
{
	alert('Sorry. There was an error.');
}






