function myPopup(url,width,height) {
  window.open( url, "Popup","status = 0, height = "+height+", width = "+width+", resizable = 0" );
}

function myVideoPopup(title,url) {
  window.open( url, title,"status = 0, height = 340, width =340 , resizable = 1" );
}

