// JavaScript Document
    function loadPano(url) {
	//window.alert(url);
        getDocType().stopAutoPan();
		getDocType().SetURL(url);
		getDocType().startAutoPan(.1,0,1);
		
    }
	function getDocType(){

var docType='';
if (document.getElementById){
docType = document.getElementById('ptviewer');
} else if (document.ptviewer) {
docType = document.ptviewer;
} else if (document.applets) {
docType = document.applets['ptviewer'];
} 

return docType;
}

