function doPlay(video, img, autoplay) {
	var so = new SWFObject('http://www.tvsolucoes.com.br/mediaplayer.swf','mpl','404','337','7');
	so.addParam('allowfullscreen','true');
	so.addParam('allowscriptaccess','always');
	so.addParam('wmode','transparent');
	so.addParam('stretching','none');
	so.addVariable('autostart',autoplay);
	so.addVariable('file','http://www.tvsolucoes.com.br/cronos/videos/' + video);
	so.addVariable('image','http://www.tvsolucoes.com.br/cronos/videos/' + img);
	so.write('player');
}

function openLive() {
	var url = 'http://www.tvsolucoes.com.br/aovivo.php';
	window.open(url,'tvsolucoeslive','height=360,width=540');
}

function searchBox(box,tipo) {
	if (box) {
		if (tipo == 'in') {
			if (box.value == box.title) {
				box.value = '';
			}
		} else {
			if (box.value == '') {
				box.value = box.title;
			}
		}
	}
}

