// JavaScript Document
var newwindow;
function popwin(url)
{
	new_window=window.open(url,'name','height=450,width=300');
	if (window.focus) {new_window.focus()}
}