var baseURL='http://www.bpv.bg/';


// JavaScript Document
function menu(){
		document.getElementById('left_menu').style.height=document.getElementById('right_panel').clientHeight+70+'px';
		if (document.getElementById('left_menu').clientHeight<document.getElementById('content').clientHeight-10){
	    document.getElementById('left_menu').style.height=(document.getElementById('content').clientHeight-10)+'px';
		}
}
function right(){
		document.getElementById('content').style.height=document.getElementById('right_panel').clientHeight+76+'px';
}




// -------------------------------------------------------------
// Player Widget
function createPlayer(theFile,destinationDiv,width,height,autostart) {
	
	
	var s1 = new SWFObject(baseURL+'images/player.swf','player',width,height,'9');
	s1.addParam('allowfullscreen','true');
	s1.addParam('allowscriptaccess','always');
	s1.addParam('wmode','transparent');
	s1.addParam('flashvars','file='+theFile+"&autostart=true&repeat=true&skin="+baseURL+"images/stylish.swf");
	s1.write(destinationDiv);

}
