function OpenDynWindow2(file,wdth,hght)
    {
        dynwindow = window.open(file, 'anew', config='height=980,width=680,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=center,directories=no,status=no,titlebar=no');
        dynwindow.top.resizeTo(wdth,hght);        
        self.dynwindow.focus();
    }

function OpenScreenshot(pth,file,wdth,hght)
		{
			//alert(pth+'/'+file);
			dynwindow = window.open('http://www.autotradingsystems.com/screenshot.php?img='+file+'&pth='+pth, 'anew',  config='height='+hght+',width='+wdth+',toolbar=no,menubar=no,scrollbars=no,resizable=yes,location=center,directories=no,status=no,titlebar=no');
			dynwindow.top.resizeTo(wdth,hght);        
			self.dynwindow.focus();
		}