// JavaScript Document
function open_lyrics(title,artist){

	if(artist!='null'){
		var surl='http://www.lyricsplugin.com/winamp03/plugin/?artist=' +escape(artist) + '&title=' + escape(title);
		win = new Window({className: "bluelighting", title: title, width:470,height:500, url: surl, showEffectOptions: {duration:1.5}}) ;
		win.showCenter();
		
	}else{
		
	}
}
function open_vid(address){


		var surl=address;
		win = new Window({className: "bluelighting", title: 'Video Player', width:745,height:495, url: surl, showEffectOptions: {duration:1.5}}) ;
		win.showCenter();

}
function scolor(id,type){
	if(type==1){
		$(id).style.background  ="#CCCCCC";
	}else{
		$(id).style.background  ="";		
	}
}
