// JavaScript Document

function showPlayer(preview, flv) {
	html = '<p align="center"><object type="application/x-shockwave-flash" data="http://artimpress.ru/gallery/uflvplayer.swf" height="300" width="400"><param name="bgcolor" value="#FFFFFF" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="movie" value="http://artimpress.ru/gallery/uflvplayer.swf" /><param name="FlashVars" value="way=http://artimpress.ru/gallery/'+flv+'&amp;swf=http://artimpress.ru/gallery/uflvplayer.swf&amp;w=400&amp;h=300&amp;pic=http://artimpress.ru/gallery/'+preview+'&amp;autoplay=0&amp;tools=1&amp;skin=white&amp;volume=70&amp;q=&amp;comment=artimpress.ru" /></object> <br /><a href="#" onClick="hidePlayer();">Закрыть</a></p>';
	
	document.getElementById("flv_div").innerHTML = html;
}

function hidePlayer() {
	document.getElementById("flv_div").innerHTML = '';
}