
/*
public index
*/

//httpsからhttpへリダイレクト
var current_url = location.href;
if( current_url.substring(0,5) == 'https' ){
    if( current_url.match("/public/etc/sitemap")
        || current_url.match("/public/etc/privacypolicy")
        || current_url.match("/public/etc/company")
        || current_url.match("/public/etc/pressrelease")
        || current_url.match("/public/etc/knowledgecenter")
        ){
        setTimeout('link(\'' + current_url.replace('https','http') + '&nonssl=1\')', 10);
    }
    if( current_url=="https://www.mobi-one.com" ){
        setTimeout('link(\'' + current_url.replace('https','http') + '/?nonssl=1\')', 10);
    }
    if( current_url=="https://www.mobi-one.com/" ){
        setTimeout('link(\'' + current_url.replace('https','http') + '?nonssl=1\')', 10);
    }
}
function link( redirect_url ){
    location.href=redirect_url;
}

function opnWin(f,title){
	subWin=window.open(f,title,"toolber=no,location=no,menubar=no,scrollbars=yes,resizable=yes");
}



