// JavaScript Document
var newwindow;
function popwindow(url)
{
	newwindow=window.open(url,'Text','height=200,width=330,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
