
//checks that comes from home page
//if so, resizes window to 1000px

myLocation = document.referrer;

if (myLocation.indexOf('index.html') !=-1) {
window.resizeTo(1025,1000)
}




function  popTable(file2use, width, height, scrolling) {
	window.open(file2use, '', features='width=' + width + ', height=' + height + ', status=no, menubar=no, resizable=yes,' + scrolling);
}