/// pop-up ///
function popUp(strURL,strType,strWidth,strHeight) {
var strOptions="";
if (strType=="redScroll") strOptions="status,resizable,scrollbars,height="+strHeight+",width="+strWidth;
if (strType=="redNoScroll") strOptions="status,resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixNoScroll") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="fixScroll") strOptions="status,scrollbars,height="+strHeight+",width="+strWidth;
if (strType=="padrao") strOptions="status,toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
newWin = window.open(strURL, strType, strOptions);
newWin.focus();
//USO
//<a href="pagina.htm" onclick="popUp(this.href,'redScroll',600,450);return false;">
}

//NoSpan
function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
	//USO <a href="javascript:noSpam('contato','investimoveisbrasilia.com.br')">email para contato</a>
}

//Foco
function focusme(){
	self.window.focus();
}
