// JavaScript Document
String.prototype.trim=function(){
  var x=this;
  x=x.replace(/^\s*(.*)/,"$1");
  x=x.replace(/(.*?)\s*$/,"$1");
  return x;
}

function openWindow(theURL,winName,w,h,features) {
	var top=((screen.height-h)/2)-50;
	var left=(screen.width-w)/2;
	if(features!=""){
		features+=',width='+w+',height='+h+',top='+top+',left='+left;
	}else{
		features='width='+w+',height='+h+',top='+top+',left='+left;
	}
	window.open(theURL,winName,features);
}

function confirmSubmit(){
	var agree=confirm("ต้องการทำงานรายการต่อหรือไม่ ?");
	if(agree) return true ;
	else return false ;
}