// JavaScript Document

//Function to Pop a new window and set focus to it.
function PopWin(url,name,options){
	var ContextWindow = window.open(url,name,options);
	ContextWindow.opener = this;
	ContextWindow.focus();
}

