// WINDOW FUNCTIONS //
function launchXWeb(url) {
var winl = (screen.width - 800) / 2;
//var wint = (screen.height - 600) / 4;
winprops = 'height=600,width=800,top=10,left='+winl+',scrollbars,resizable,menubar,toolbar'
win = window.open(url, "remote", winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
// END WINDOW FUNCTIONS //
