// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function noRigthButton(e) 
{ 
if(e.button==2) alert('Copyright @ Hotzips.com');
} 

document.onmousedown=function(event){
	evento= event?event:window.event;
	noRigthButton(this,evento);
}

function resizeDIV(num){
	getElementById_s('boxline1').style.height=num;
	getElementById_s('categorias').style.height=num;
}

// getElementById Special to handle quirky browsers
// most will use getElementById()
function getElementById_s(id){
var obj = null;
if(document.getElementById){
/* Prefer the widely supported W3C DOM method, if
available:-
*/
obj = document.getElementById(id);
}else if(document.all){
/* Branch to use document.all on document.all only
browsers. Requires that IDs are unique to the page
and do not coincide with NAME attributes on other
elements:-
*/
obj = document.all[id];
}
/* If no appropriate element retrieval mechanism exists on
this browser this function always returns null:-
*/
return obj;
}

