function spawn(desktopURL,windowName,width,height) {
	window.open(desktopURL, windowName, "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width="+width+",height="+height+",resizable=no" );
}

function resizeLabel(){
        var obj = document.getElementById('textLabel');
        var maxWidth = 737;
        var timeoutCounter=0;
        var theWidth = obj.offsetWidth;
        while(timeoutCounter<100 && theWidth<maxWidth){
            obj.style.fontSize = obj.style.fontSize.replace('px','')/1 + 1;
            theWidth = obj.offsetWidth;
            timeoutCounter++;
            
        }
        obj.style.fontSize = obj.style.fontSize.replace('px','')/1 - 1;
            
    }
    
    
