// JavaScript Document - VenkoBrasil

function imgLink(end, pag){
	if (pag == 1){
		window.location = end;
	}else if(pag ==2){
		
	/*	var largura = 750;
		var altura = 600;
		var scrol = "no";
		var arquivo = "produtos/" + end + "/default.asp";
		
		var calcleft = (screen.width / 2) - (largura / 2);
		var calctop = (screen.height / 2) - (altura / 2);
		
		window.open(arquivo,"Produtos","width=" + largura + ",height=" + altura + ",left=" + calcleft + ",top=" + calctop + ",scrollbars=" + scrol);*/
		
		window.location = "produtos/" + end + "/default.asp";
	
	}else{
		window.open(end);
	}
}


function getRefToDiv(divID) {   
    if( document.layers ) { //Netscape layers   
        return document.layers[divID]; }   
    if( document.getElementById ) { //DOM; IE5, NS6, Mozilla, Opera   
        return document.getElementById(divID); }   
    if( document.all ) { //Proprietary DOM; IE4   
        return document.all[divID]; }   
    if( document[divID] ) { //Netscape alternative   
        return document[divID]; }   
    return false;   
}