/*
 *
 *スクリプト名           ： ランダム広告表示スクリプト( pr.js )  Ver 2.00
 *
 */


function random_msg( ) {

var r ;
var xx = new Array( ) ;


//カスタマイズここから
//
//xx.push( '表示させたい広告等1' ) ;
//xx.push( '表示させたい広告等2' ) ;
//xx.push( '表示させたい広告等3' ) ;
//.
//.
//.
//
//のように記述する

xx.push( '<a href="/corp/solution/ningenryoku.html"><img src="/corp/images/topSwf-ningenryoku.jpg" alt="人間力とEQ" /></A>' ) ;
xx.push( '<a href="/corp/solution/management.html"><img src="/corp/images/topSwf-manage.jpg" alt="マネジメント強化／部下育成" /></A>' ) ;
xx.push( '<a href="/corp/solution/mental.html"><img src="/corp/images/topSwf-stress.jpg" alt="ストレスマネジメント・予防と対策" /></A>' ) ;

//カスタマイズここまで


r = Math.floor( Math.random( ) * xx.length ) ;
document.write( xx[r] ) ;

}


