function createPlayer(theValue,pictureFolder,theVideoId,theIpAddress,theInternalIp) {
	var theStartTime="";
	var theCloseTime="";
	var theMovieName="";
	
	if (theValue.indexOf("|") > -1) {
		var arrValues=theValue.split("|");
		theMovieName=arrValues[0];
		theStartTime=arrValues[1];
		theCloseTime=(arrValues[2]==undefined)?"":arrValues[2];
		///alert(theMovieName+" - "+theStartTime+" - "+theCloseTime);
	} else {
		theMovieName=theValue;
		//alert(theMovieName);
	}
	var w = 480;
	var h = 360;	
	var s = new SWFObject("/js/player.swf","playerId",w,h,"7");

    s.addParam('allowfullscreen','true');
    s.addParam('allowscriptaccess','always');
    s.addParam('wmode','opaque');
    s.addVariable('file','http://video.ciner.com.tr/movies/' + theMovieName);
	s.addVariable("autostart","true");
    s.write("placeholder");
}

var original = true;
function toggleBGColor(id) {
    if (original) {
        if (document.getElementById) document.getElementById(id).style.backgroundColor = 'red';
        else if (document.layers)    document[id].bgColor = 'green';
        else if (document.all)       document.all[id].style.backgroundColor = 'blue';
    }
    else {
        if (document.getElementById) document.getElementById(id).style.backgroundColor = 'white';
        else if (document.layers)    document[id].bgColor = 'white';
        else if (document.all)       document.all[id].style.backgroundColor = 'white';
    }
    original = !original;
}
