<!--

function RollOver (obj,val) {
  obj.src = val;
} 

function winOpen(fileName,w_Width,w_Height,scr){
	
	var w_Center	= 'yes';
	var screenSize	= 'yes';

	if( scr == 'scr_non' ){
			scroll_bar = 'no';
	}

	var option_01 = "width=" + w_Width + ",center=1,height=" + w_Height + ",resizable=no,scrollbars=yes";
	var option_02 = "menubar=no,toolbar=no,titlebar=no";

	var win=window.open(fileName,"sub_window",option_01,option_02)

	if( w_Width == 'yes'){
		win.resizeTo(screen.width,screen.height);
	}

	if( w_Center == 'yes'){
		x = (screen.width  - w_Width) / 2;
		y = (screen.height - w_Height) / 2;
		win.moveTo(x,y);
	}
}

isNN4 = document.layers;
isDOM = document.getElementById;

function printing() {
if(isNN4 || isDOM) {
window.print();
}
}

//-->