// JavaScript Document
//  if (top.location.href != url )
//	top.location.href =  url;

  function delete_check(url) {
	if(confirm('您確定要刪除嗎?'))
	  window.location.href = url;
  }
  function win_open(url,w,h) {
	var strFeatures = "toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0";
	var maxh = screen.availHeight - 30;
	var maxw = screen.availWidth - 10;
	var t = (maxh - h) / 2;
	var l = (maxw - w) / 2;
	strFeatures += ",top=" + t;
	strFeatures += ",left=" + l;
	strFeatures += ",width=" + w;
	strFeatures += ",height=" + h;
	strFeatures += ",innerHeight=" + maxh;
	strFeatures += ",innerWidth=" + maxw;
	window.open(url,'',strFeatures);
  }
  
  function win_open2(url,w,h) {
	var strFeatures = "toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=1,resizable=0";
	var maxh = screen.availHeight - 30;
	var maxw = screen.availWidth - 10;
	var t = (maxh - h) / 2;
	var l = (maxw - w) / 2;
	strFeatures += ",top=" + t;
	strFeatures += ",left=" + l;
	strFeatures += ",width=" + w;
	strFeatures += ",height=" + h;
	strFeatures += ",innerHeight=" + maxh;
	strFeatures += ",innerWidth=" + maxw;
	window.open(url,'',strFeatures);
  }
  
  function disableScroll(){
     document.body.scroll = 'no';
  }

