var searchentered=0;
var starsearchentered=0;

function checkClear(obj)
{
	EMail = obj.value;
	if(EMail=="user@domain.de")
	{
		obj.value= "";
	}
}

function enterSeachbox(Obj, what)
{
	
	if(searchentered==0 && what=="title")
	{
		Obj.value='';
		searchentered=1;
	}
	if(starsearchentered==0 && what=="star")
	{
		Obj.value='';
		starsearchentered=1;
	}
}


function showMovie(URL)
{
	movieWindow = window.open(URL,'htmlplayer','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,width=425,height=500');
	movieWindow.focus();
}

function showFreeMovie(URL)
{
	movieWindow = window.open(URL,'htmlplayer','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,width=340,height=260');
	movieWindow.focus();
}

function movepic(img_name,img_src) {
	document[img_name].src=img_src;
}


function displayError(ErrorText, ID)
{
	if(ErrorText.length>0)
	{
		document.getElementById(ID).innerHTML = ErrorText;
	}
}


