
//――――――――――――――――――――――――――――――――――――――
// PRINT 
//――――――――――――――――――――――――――――――――――――――
function PrintPage(){
	if(document.getElementById || document.layers){
		window.print();		//印刷をします
	}
}


//--------------------------------------------------
// POPUP WIN OPEN
//--------------------------------------------------
function pop2URL(wk1,WW,HH){
	var PopWidth  = "";
	var PopHeight = "";
	if(WW){ PopWidth  = ",width=" + WW; }
	if(HH){ PopHeight = ",height=" + HH; }
	var PopDetail = "scrollbars=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1" + PopWidth + PopHeight;
	PopWin = window.open(wk1,"pop",PopDetail);
	PopWin.focus();
}

function popUp(path,w,h){
	if(w){var PopWidth = ",width=" + w;}
	if(h){var PopHeight = ",height=" + h;}
	var PopDetail = "toolbar=1,location=0,directories=0,status=1,menubar=1,resizable=0,scrollbars=1" + PopWidth + PopHeight;
	var win = window.open(path,'popup',PopDetail);
		win.resizeTo(w,h);
		win.focus();
}

function submitForm(q,p) {
	document.stockForm.page.value=p;
	document.stockForm.qsearch.value=q;
	document.stockForm.stockSubmit.click(); 
}

function submitTest(q) {
	alert(q);
}