////////////////////////////////
// Opens popup in center of page
////////////////////////////////
// html usage: <a href="javascript:winOpen('page.html','popwin','750','500','no','no');return false;"></a>
// flash usage: getURL("javascript:winOpen('page.html','popwin','750','500','no','no');");

function popup(url, w, h, scrollbars, resizable){
	if(!scrollbars) scrollbars = "0";
	if(!resizable) resizable = "1";
	var l = (screen.width - w) / 2;
	var t = (screen.height - h) / 2;
	winProp = 'width='+w+',height='+h+',left='+l+',top='+t+',scrollbars='+scrollbars+',resizable='+resizable;
	var Win = window.open(url, 'popupWin', winProp);
	if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }
}

//////////////////////
// Status Bar Message
//////////////////////

function statusBar(msg) {
	self.status=msg;
}
statusBar(document.title);