



var g_popup = null;
function init() {
	g_popup = new PopupLayer("PopupMasterContainer","Online..");
	g_popup.center();
	g_popup.hide();

	//g_popup.open("ExternalFileOnSomewhereElse.html","this is an external file");


	//new EventHandler().addEventListener(document,"click",document_Click);
     
}
new EventHandler().addEventListener(window,"load",init);

function document_Click(evt) {
	var obj = new EventHandler().getProperSourceFromEvent(evt);

	if(obj.className!="popupCloseIcon"&&obj.tagName.toLowerCase()!="select"&&obj.tagName.toLowerCase()!="option") {
		g_popup.show();
	}
}
