﻿// JScript File

function openPopup(url)
    {
	   var winTop = (screen.height / 2) - 300;
	   var winLeft = (screen.width / 2) - 175;
	   var windowFeatures = "width= 500"+ ",height= 580" + ",";
	   windowFeatures = windowFeatures + "left=" + winLeft + ",";
	   windowFeatures = windowFeatures + "top=" + winTop +",resizable=yes,scrollbars=yes,location=yes,status=yes";
	   newWindow = window.open(url,"myWindow",windowFeatures);
       //window.open(url,"mywindow");
  }
  function comfirmDelete()
  {
    var isOk;
    isOk = confirm('Bạn thật sự muốn xóa phải không ? Nhắm mắt đưa chân thì bấm Ok còn không bấm cancel');
    return isOk;
  }
    
  function openPopupVote(url)
    {  
        
       var istrue = vote();
       if(istrue)
       {
	   var winTop = (screen.height / 2) - 100;
	   var winLeft = (screen.width / 2) - 300;
	   var windowFeatures = "width= 465"+ ",height= 215" + ",";
	   windowFeatures = windowFeatures + "left=" + winLeft + ",";
	   windowFeatures = windowFeatures + "top=" + winTop +",resizable=yes,scrollbars=yes";
	   newWindow = window.open(url,"myWindow",windowFeatures);
	   }
  }
  function openPopupVote1(url)
    {  
      
	   var winTop = (screen.height / 2) - 100;
	   var winLeft = (screen.width / 2) - 300;
	   var windowFeatures = "width= 465"+ ",height= 215" + ",";
	   windowFeatures = windowFeatures + "left=" + winLeft + ",";
	   windowFeatures = windowFeatures + "top=" + winTop +",resizable=yes,scrollbars=yes";
	   newWindow = window.open(url,"myWindow",windowFeatures);
	   
  }