////
//// LAUNCH
////

function xLaunch(page, width, height)
{ 

// Variable
var tp										= (screen.height / 2) - (height / 2);
var lt										= (screen.width / 2) - (width / 2);

// Open file
OpenWin = this.open(page, "xLaunch", "toolbar=no, menubar=no ,location=no, scrollbars=yes, resizable=yes, width=" + width + ", height=" + height + ", top=" + tp + ", left=" + lt + "\""); 

}