/**
 * Copyright (C) SecondGate. All Rights Reserved.
 * URL   : http://www.2ndgate.jp 
 * email : info@2ndgate.jp
 * 
 * Navi       common.js
 * Ver 1.0    date  : 2005/01/27
 */

/* page back */
function pageback(){
	history.back();
}

/* openwin */
function openwin(url,name,w,h,t,m,d,s){
return window.open(url,name,"resizable=1,scrollbars=1,width="+w+",height="+h+",toolbar="+t+",menubar="+m+",directories="+d+",status="+s)
}

/* window close */
function closewin(){
	window.close();
}

/* window renew */
function renew(form) {
	var IndexName = form.menu.selectedIndex;
	var url = form.menu.options[IndexName].value;
	if (url != "-" ) location.href = url;
}