﻿var firstClick = true;
function enableSubmit() {
	if(firstClick == true) {
		firstClick = false;
		return true;
	}else{
		return false;
	}
}

function SubmitCheck(obj)
{	
	if(obj.bkcd.value != false
		&& obj.auth.value == false
		&& obj.auth.value.indexOf('0') > -1)
		return true;
		
	if(obj.bkcd.value == false 
		|| obj.auth.value == false)
		return false;
	
	return true;
}

function SubmitWindow(openflg,name,url)
{
	if(openflg == true){
		window.open("", name, 'width=670,height=800,dependent=yes,resizable=yes,scrollbars=yes');
		window.document.inputform.action = url; 
		window.document.inputform.target = name;
		window.document.inputform.method = "POST";
		window.document.inputform.submit();
	}
}
