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 = 280;
	var h = 227.5;	
	var s = new SWFObject("http://video.ciner.com.tr/cd_dergiler.swf?v=86","playerId",w,h,"7");
	s.addParam("allowfullscreen","true");
	if(theMovieName != "") {
		s.addVariable("movieName",theMovieName);
		s.addVariable("startTime",theStartTime);
		s.addVariable("closeTime",theCloseTime);
		s.addVariable("videoId",theVideoId);
		s.addVariable("pictureFolder",pictureFolder);
		s.addVariable("ipAddress",theIpAddress);
		s.addVariable("internalIp",theInternalIp);	
	}
	s.addVariable("width",w);
	s.addVariable("height",h);
	s.addVariable("displayheight",h);
	s.addVariable("autostart","false");
	s.addVariable("shuffle","false");
	s.addVariable("thumbsinplaylist","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;
}