// JavaScript Document
var newwindow;

function popWindow(url)
{
	newwindow=window.open(url,'name','width=650,height=350,left=10, top=10,resizable=no,scrollbars=no,toolbar=yes,status=yes');
	if (window.focus) {newwindow.focus()}
}