// JavaScript Document
var newwindow;
function popWindow(url)
{
	newwindow=window.open(url,'name','scrollbars=yes,resizable=no,width=480,height=450,top=100,left=100');
	if (window.focus) {newwindow.focus()}
}