// JavaScript Document
var m_winObj = NULL;

function chgUrl(strUrl, strWindowName){

	m_winObj = window.open(strUrl,strWindowName,"");

	m_winObj.focus();

	return false;
}
