
function popupImageWithInfo(pID, url){
    window.open('index.php?main_page=popup_image&pID='+pID+'&imgurl='+url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=310,height=310,screenX=150,screenY=150,top=150,left=150')
}

function popupImage(url) { 
  window.open('index.php?main_page=popup_image&imgurl='+url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=310,height=310,screenX=150,screenY=150,top=150,left=150')
}

var unique = 0;
function popuppage(url) {
  var height = 500;
  var width = 675;
  var left = (screen.width-width)/2;
  var top = (screen.height-height)/5;
  window.open(url,"popup"+unique,"mstatus=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,width="+width+",height="+height+",top="+top+",left="+left);
  unique++;
}

var videounique = 0;
function popupvideo(url) {
  var height = 440;
  var width = 380;
  var left = (screen.width-width)/2;
  var top = (screen.height-height)/5;
  window.open(url,"popupvideo"+videounique,"mstatus=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,width="+width+",height="+height+",top="+top+",left="+left);
  videounique++;
}

function subscribed(){
    
    var myemail = $("#subscribed_email").val();
    $.get("subscribed.php", {email: myemail},
    function(data){
      alert(data);      
      $("#subscribed_email").val('');  
    }
    );
    
    return false;
}
