// --------------------------
// JavaScript Document
// drSolutions - Site Temporário
// --------------------------
// Diego Mendes Rodrigues
// diego@drsolutios.com.br
// --------------------------

function abreQuemSomos() {
//	var w=600;
//	var h=400;
//	var winl = (screen.width - w) / 2;
//	var wint = (screen.height - h) / 2;
//	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',titlebar=no,toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,resize=yes,location=no,copyhistory=no';
//	win = window.open("quemsomos.php", "quemsomos", winprops);
//	if (parseInt(navigator.appVersion) >= 4) { 
//		win.window.focus(); 
//	}
	window.location="quemsomos.php";
}

function abreServicos() {
//	var w=600;
//	var h=400;
//	var winl = (screen.width - w) / 2;
//	var wint = (screen.height - h) / 2;
//	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',titlebar=no,toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,resize=yes,location=no,copyhistory=no';
//	win = window.open("servicos.php", "servicos", winprops);
//	if (parseInt(navigator.appVersion) >= 4) { 
//		win.window.focus(); 
//	}
	window.location="servicos.php";
}

function abrePortifolio() {
//	var w=600;
//	var h=400;
//	var winl = (screen.width - w) / 2;
//	var wint = (screen.height - h) / 2;
//	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',titlebar=no,toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,resize=yes,location=no,copyhistory=no';
//	win = window.open("portifolio.php", "portifolio", winprops);
//	if (parseInt(navigator.appVersion) >= 4) { 
//		win.window.focus(); 
//	}
	window.location="portifolio.php";
}

function abreContato() {
//	var w=600;
//	var h=400;
//	var winl = (screen.width - w) / 2;
//	var wint = (screen.height - h) / 2;
//	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',titlebar=no,toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,resize=yes,location=no,copyhistory=no';
//	win = window.open("contato.php", "contato", winprops);
//	if (parseInt(navigator.appVersion) >= 4) { 
//		win.window.focus(); 
//	}
	window.location="contato.php";
}

function validarLogin() {
	if ( document.login.user.value.length == 0 ) {
		alert("Informe seu login!");
		return false;
	}
	if ( document.login.pass.value.length == 0 ) {
		alert("Informe sua senha!");
		return false;
	}
	return true;
}

function noticiaoriginal(id) {
	var winl = (screen.width - 780) / 2;
	var wint = (screen.height - 400) / 2;
	//winprops = 'height='+400+',width='+780+',top='+wint+',left='+winl+',titlebar=no,toolbar=no,scrollbars=yes,menubar=no,status=no,directories=no,resize=yes,location=no,copyhistory=no';
	winprops = 'height='+400+',width='+screen.width+',top='+wint+',left=0,titlebar=no,toolbar=no,scrollbars=yes,menubar=no,status=no,directories=no,resize=yes,location=no,copyhistory=no';	
	win = window.open("lernoticiaoriginal.php?id=" + id, 'drNoticias' + id, winprops);
	if (parseInt(navigator.appVersion) >= 4) { 
		win.window.focus(); 
	}	
}
