function playInstantVideo(siteURL, videoId)
{
	var thumb = document.getElementById('video_thumb_'+videoId);
	thumb.style.display = 'none';
	var video_div = document.getElementById('video_player_'+videoId);
	video_div.innerHTML = '<iframe src="'+siteURL+'/modules/play_video.php?file_id='+videoId+'" width="640" height="385" scrolling="no" marginheight="0" marginwidth="0" frameborder="0" hspace="0" vspace="0" ></iframe><br /><br />';
}

function playFirstVideo()
{
	var siteURL = document.getElementById('siteURL').getAttribute('value');
	var videoId = document.getElementById('firstVideo').getAttribute('value');
	playInstantVideo(siteURL, videoId);
}