  function windowOpen(siteLocation,indent){

	if (siteLocation){
	    if (indent == 0){
			window.open(siteLocation,'_blank','fullscreen');
		}
    	else{
    		showImg = window.open(siteLocation,'showImg','width=400,height=100,top=150,left=150');
			showImg.focus();
		}
  	}

    return false;
  }

/*******************************************************************************
******************************   NEXT  FUNCTION   *****************************/

  function windowResize(siteLocation){

  	ImgObj = new Image();
    ImgObj.src = siteLocation;
  	info0 = ImgObj.width+18;
  	info1 = ImgObj.height+96;
	if (document.all){
		info0 += 2;
		info1 -= 8;
	}
	
	window.resizeTo(info0,info1);
	
  	return false;
  }