function ShowMore(file){
	//urchinTracker(file);
	var xmlObj = zXmlHttp.createRequest();	
   	xmlObj.onreadystatechange = function(){
    	if(xmlObj.readyState == 4){
       		processHTML(xmlObj.responseText,file);
     	}
   	}
   	xmlObj.open ('GET', file, true);
   	xmlObj.send(null);
	    
}

var ExtWin
function GotoSite(url){
var winX,winY,w=640,h=560
winX=(screen.availWidth-w)/2; winY=(screen.availHeight-h)/2
ExtWin=window.open(url,"Win")
}
 
function processHTML(obj,file){		
	document.getElementById ('loadarea').innerHTML = obj;
}

function processVIDEO(obj){				
 	document.getElementById ('contentArea').innerHTML = '<iframe src=\'video_test.html\' name=\'videoframe\' width=\'418\' height=\'202\' scrolling=\'auto\' frameborder=\'0\'></iframe>' + '<br>' + obj;
} 