var w3gAnchorFunctionArray= new Array(w3gAdjustWrapperUrl);
//var w3gBlockResize=false;
/*
function w3gSetBlockResize() {
 w3gBlockResize=true;
}*/
function w3gResizePageHome() {
try {
//if (w3gBlockResize) return;
var content = $('wv1_content_home');
content.hide();
content.removeClassName('content_long_pageHome');
content.addClassName('content_short_pageHome');
content.show();
} catch (e) {/*window.status="err in resizePageHome";*/}}

function w3gResizePageInternet() {
try {
//if (w3gBlockResize) return;
var content = $('wv1_content_all');
var contentInner = $('wv1_content_inner');
var contentBottom = $('wv1_content_bottom');
content.hide();
contentInner.hide();
contentBottom.hide();
content.removeClassName('content_long');
contentInner.removeClassName('content_inner_long_pageInternet');
contentBottom.removeClassName('content_bottom_long');
content.addClassName('content_short');
contentInner.addClassName('content_inner_short');
contentBottom.addClassName('content_bottom_short');
content.show();
contentInner.show();
contentBottom.show();
} catch (e) {/*window.status="err in resizePageInternet";*/}}

function w3gEnlargePageInternet() {
try {
var content = $('wv1_content_all');
var contentInner = $('wv1_content_inner');
var contentBottom = $('wv1_content_bottom');
content.hide();
contentInner.hide();
contentBottom.hide();
content.removeClassName('content_short');
contentInner.removeClassName('content_inner_short');
contentBottom.removeClassName('content_bottom_short');
content.addClassName('content_long');
contentInner.addClassName('content_inner_long_pageInternet');
contentBottom.addClassName('content_bottom_long');
content.show();
contentInner.show();
contentBottom.show();
w3gBlockResize=false;
} catch (e) {/*window.status="err in enlargePageInternet";*/}}
