var newwindow;
function little_window(url)
{
	newwindow=window.open(url,'name','resizable=yes,height=320,width=800,top=50px,left=700px,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

/*put this in your html page:

<script src="/includes/js/new_window.js" type="text/javascript"></script>

<a href="page.html" onClick="little_window(this.href); return false;"></a>*/
