// JavaScript Document

function openSmallWin(url) {
	aWindow = window.open(url,"thewindow",'toolbar=0,location=0,directories=0,status=0,menubar=0, width=400, height=400, scrollbars, resizable');
	aWindow.focus();
}
