// JavaScript Document

function subWin(url,winName,features){
	var newWin = window.open(url, winName, features);
	newWin.focus();
}
