//make sure the window is full size
if(screen.width>800 && screen.height>500) {
	self.resizeTo(parseInt(screen.width-5),parseInt(screen.height)-5);
	self.moveTo(0,0);
}
function new_window(url) {

link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=325,height=350,left=80,top=180");
}

