// JavaScript Document



/* Window Open */
function openWindow(action, target, typecode) {
    
    var style;
    
    if(typecode == '01'){
    	style = 'width=650, height=700, left=20, top=20, toolbar=no, menubar=no, location=no, scrollbars=yes, status=no, resizable=no';
	}else if(typecode == '02'){
		/*
		style = 'width=900, height=370, left=20, top=20, toolbar=no, menubar=no, location=no, scrollbars=no, status=no, resizable=no';
		*/
	}else{
    	style = '';
    }
    
    /*target = target.replace('-', '_');*/

    var win = window.open(action, target, style, true);

    win.focus();
	
	return false;
}
/* Window Open */


/* Window Close */
function closeWindow() {
	
	var agent = navigator.userAgent.toUpperCase();
	
	if( agent.indexOf("SAFARI") >= 0 ){
		
		window.opener = window;
		var win = window.open( location.href, "_self" );
		win.close();
		
	} else {
		
		window.close();
		
	}
}
/* Window Close */



/* Show Close */
function showClose() {
	
	document.write('<a href="javascript:closeWindow();">×&nbsp;閉じる</a>');
	
}
/* Show Close */



/* History Back */
function backHistory() {
	
	document.write('<a href="javascript:history.back();"><<&nbsp;前のページに戻る</a>');
	
}
/* History Back */


/* Photograph */
function showPhoto(name, msg) {

	if (document.images) {
		
		document.images['photo_area'].src = eval(name + '.src');
		document.form1.field1.value = msg; 
		
	}

}

function initText(msg) {
	
	document.form1.field1.value = msg;
	
}
/* Photograph */