function lightbox_openmodal(strURL,intWidth,intHeight) {
	var winModal;
	var strOptions='width=' + intWidth + ',height=' + intHeight + ',dependent=yes, top=300, left=300, status=no, location=no, menubar=no, resizable=no, scrollbars=no, toolbar=no';
	//alert(strURL);
	winModal=window.open(strURL,'lbtoolwin',strOptions);
}

function lightbox_toolconfirmaction(strMsg,objForm) {
	var bolConfirm=false;
	bolConfirm=confirm(strMsg);
	if(bolConfirm==true) {
		objForm.toolconfirm.value='OK';
		objForm.submit();
	} else {
		objForm.toolconfirm.value='NO';
		objForm.func.value='';
		objForm.toolfunc.value='';
	}
}