/**
 * @author pburgisser
 */
function checkField(){
	
	if ($('ean_field').value != ""){
		$('btn_disabled').style.display = "none";
		$('btn_enabled').style.display = "";
	
	}else{
		
		$('btn_enabled').style.display = 'none';
		$('btn_disabled').style.display = '';
	
	}
}

function openSimulator(){
	window.open('/simulator','CodeOnLineSimulator','width=290,height=590,scrollbars,resizable,location,status');
}

function openBrowser(url){
	//$('browser').style.display = '';
	//$('fields').style.display = 'none';
	alert(url);
	$('iframe_result').src = url;
}

