	<!-- ##### FLOATING WINDOW for each big picture #####

	function openCenteredWindow(url, height, width, name, parms)
	{
	var left = Math.floor( (screen.width - width) / 2);
	var top = Math.floor( (screen.height - height) / 2);
	var winParms = "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width;
	if (parms)
	winParms += "," + parms;
	var win = window.open(url, name, winParms);
	}

	// -->

	<!-- ##### ROLLOVER TEXT2 #####
	
	if (document.images)

	{
	aboutmeText = new Image
	aboutmebgText = new Image
		
	aboutmeText.src = "../images/icons/about_me_mouseover.jpg"
	aboutmebgText.src = "../images/icons/about_me.jpg"
	}

	else

	{
	aboutmeText = ""
	aboutmebgText = ""
	document.textField2 = ""
	}

	// -->

	<!-- ##### ROLLOVER TEXT3 #####
	
	if (document.images)

	{
	contactmeText = new Image
	contactmebgText = new Image
		
	contactmeText.src = "../images/icons/contact_me_mouseover.jpg"
	contactmebgText.src = "../images/icons/contact_me.jpg"
	}

	else

	{
	contactmeText = ""
	contactmebgText = ""
	document.textField3 = ""
	}

	// -->

	<!-- ##### ROLLOVER TEXT4 #####
	
	if (document.images)

	{	
	bpText = new Image
	bpbgText = new Image	
	
	bpText.src = "../images/icons/bp.jpg"
	bpbgText.src = "../images/icons/bpbg.jpg"
	}

	else

	{	
	bpText = ""
	bpbgText = ""
	document.textField4 = ""
	}

	// -->



	<!-- ##### FLOATING WINDOW #####

	function newWindow()
	{
	floatingWindow = window.open ('../about_me.html', 'floatingWin', 'width=550,height=600,top=10,left=10,screenX=10,screenY=10,scrollbars=1,resizable=1')
	}	

	// -->

	<!-- ##### FLOATING WINDOW 2(Designer)#####

	function newWindow2()
	{
	floatingWindow = window.open ('http://www.kenhiro.net/hibi/bp/designer.html', 'floatingWin', 'width=650,height=680,top=10,left=10,screenX=10,screenY=10,scrollbars=1,resizable=1')
	}	

	// -->

	<!-- ##### CLOSE FLOATING WINDOW ##### 
	function closewindow()
	{
    	window.close();
	}
	// -->