<!--
function checkForm(formIn) {		
	if(formIn.email.value.length < 3 ||
		 formIn.email.value.indexOf("@")<0 ||
		 formIn.email.value.indexOf(".")<0) {
		alert("Adresa de email invalida.");
		formIn.email.focus();
		return (false);
	}	
		
	if(formIn.mesaj.value.length < 5){
		alert("Campul mesaj trebuie completat.");
		formIn.mesaj.focus();
		return (false);
	}			
}

function msg(what) {
	window.alert(what);
}

function view(id, site, banner, type) {
	var window_handle = window.open('', 'bx', 'width=500,height=180');	
	switch(type) {
	case '0':
		window_handle.document.write('<html><head><title>Perfect BX MediaT.ro</title></head><body><textarea name=code cols=60 rows=10><!-- MediaT.ro Perfect BX v1.0 inceput cod -->'+'\n'+'<iframe align=top width=468 height=60 marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0 scrolling=no src=\"'+site+'/bx.php?w=1&id1='+id+'\"></iframe>'+'\n'+'<!-- MediaT.ro Perfect BX sfarsit cod --></textarea></body>');
		break;
	case '1':
		window_handle.document.write('<html><head><title>MediaT.ro Perfect BX</title></head><body>'+
			'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="468" height="60">'+
			  '<param name=movie value='+banner+'>'+
			  '<param name=quality value=high>'+
			  '<embed src='+banner+' quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="468" height="60">'+
			  '</embed> '+
			'</object> </body>');
		break;
	default :
		window_handle.document.write('<html><head><title>Perfect BX MediaT.ro</title></head><body><img src='+banner+' border="0"></body>');
	}
}

function active(obj) {
	obj.style.backgroundColor = "#fdf2f3";
	obj.style.cursor = 'hand'
}

function inactive(obj) {
	obj.style.backgroundColor = "#ffffff";
}

function goto(url) {
	location.href = url;
}
//-->