function openIt(x, y, fileName, scroll) 
{
	if (navigator.userAgent.indexOf("MSIE")==-1 && navigator.userAgent.indexOf("illa/3")>0 ) {
		window.open('', 'theWindow','resizable=0,width=' + x + ',height=' + y + ',toolbar=0,menubar=0,status=1');
        window.open(fileName + '?top=-1','theWindow');
	}
	else { 
		if (navigator.userAgent.indexOf("MSIE")==-1 && ( navigator.userAgent.indexOf("4") > 0 || navigator.userAgent.indexOf("5") > 0) ) {
			if (navigator.userAgent.indexOf("Win") != -1 ) {
window.open(fileName + '?top=-1','theWindow','width=' + x + ',height=' + y + ',toolbar=0,directories=0,menubar=0,status=1,resizable=no,location=0,scrollbars=' + scroll + ',copyhistory=0,dependent=0'); 
			}
			else  {	window.open(fileName + '?top=-1','theWindow','width=' + x + ',height=' + (y+0) + ',toolbar=0,directories=0,menubar=0,status=1,resizable=no,location=0,scrollbars=' + scroll + ',copyhistory=0,dependent=0'); }
	        } 
		else {
			if (navigator.userAgent.indexOf("Win") != -1 ) {
		        window.open('', 'theWindow','scrollbars=' + scroll + ',resizable=yes,width=' + x + ',height=' + y + ',toolbar=0,menubar=0,location=0,resizable=no,status=1');
		        window.open(fileName + '?top=-1','theWindow');
				}
			else  {	
		        window.open('', 'theWindow','scrollbars=' + scroll + ',resizable=yes,width=' + x + ',height=' + (y+15) + ',toolbar=0,menubar=0,location=0,resizable=no,status=1');
		        window.open(fileName + '?top=-1','theWindow');
				}
		}
	}
}

function scrollit()
{
for (I=100; I>=1; I--)
	{
	self.scroll(1,I*5)
	}
}

