// JavaScript Document

function popWin(url, name, attributes){
	var newWindow = window.open(url, name, attributes);
	newWindow.focus();
}