var dpcontent = false;

function updateValues() {
	var state = jwplayer().getState();
	var elapsed = jwplayer().getPosition();
	//setText("stateText", state);
	//setText("elapsedText", elapsed);
	
	 if((elapsed>=90) && (dpcontent == false))
	 {
		 setText('current', '<table width="580" border="0" cellspacing="0" cellpadding="0"><tr><td><a href="javascript:popupWindow(\'http://www.oakcreekprintworks.com/video/thanks.html\')"><img src="http://www.oakcreekprintworks.com/images/coupon.jpg" width="125" height="62" align="left"></a></td><td>Thank you for watching our video. Here is the valuable Cash-off coupon. Click on the Red Box labeled "Video" to display coupon code.</td></tr></table>');
		 dpcontent = true;
	 }
}

function setText(id, messageText) {
	document.getElementById(id).innerHTML = messageText;
}

function timedCount() {
	updateValues();
	setTimeout("timedCount()",1000);
}

window.onload=timedCount;

	jwplayer("player").setup({
		width:"580",
		height:"326",
		controlbar:"over",
		id:"player",
		mute:"false",
		volume:"50",
		file: "http://www.oakcreekprintworks.com/video/welcome-to-oak-creek-printworks.mp4",
		image: "http://www.oakcreekprintworks.com/video/welcome.jpg",
		modes:[{type:"html5"},{type:"flash",src:"http://www.redbrickstudios.com/pwtv/mediaplayer/player.swf"},{type:"download"}]
	});

function popupWindow(url) {
	window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}
