/**********************************************************************************************************************************
** Resize Window
**********************************************************************************************************************************/
wWidth = skin.width;
wHeight = skin.height;
window.resizeTo(wWidth,wHeight);
var screenPosX = screen.availWidth/2 - (wWidth)/2;
var screenPosY = screen.availHeight/2 - (wHeight)/2;
window.moveTo(screenPosX, screenPosY);
if ( navigator.appName == "Netscape" ) window.setResizable(false);

