

if (top != self) top.location.href = 'http://www.hicondos.com';



function newWindow(url) {
	var page
	page = "page" + Math.floor(Math.random()*10000);
	window.open(url,page, 'top=10,left=10,width=800,height=600,scrollbars=yes,menubar=yes,toolbar=no,location=no,status=no,resizable=yes')  
}

function newWindowCust(url, width, height, menu) {
	var page
	page = "page" + Math.floor(Math.random()*10000);
	window.open(url,page,'top=10,left=10,width=' + width + ',height=' + height + ',scrollbars=no,menubar=' + menu + ',toolbar=no,location=no,status=no,resizable=yes')  
}

var winTop = 10
function newWindowCustScroll(url, width, height, menu) {
	var page
	
	page = "page" + Math.floor(Math.random()*10000);
	window.open(url,page,'top=' + winTop + ',left=' + winTop + ',width=' + width + ',height=' + height + ',scrollbars=yes,menubar=' + menu + ',toolbar=no,location=no,status=no,resizable=yes')  
	winTop = winTop + 10
}


function changeImages() {
  if (document.images) {
    for (var i=0; i<changeImages.arguments.length; i+=2) { 
	  document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
	}
  }
}