function openCenteredWindow(url, name, width, height, features) {
  if(screen.width){
	  var winl = (screen.width-width)/2;
	  var wint = (screen.height-height)/2;
  } else {
		winl = 0;
		wint =0;
  }
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + height + ',';
  settings += 'width=' + width + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += features;
  win = window.open(url, name, settings);
  win.window.focus();
}

function openStaffPopup(id, context_path) {
	openCenteredWindow(context_path + '/popups/staff.php?id=' + id, 'staff_popup', 350, 240, 'scrollbars=no, resizable=no')
}

function openSexGalleryPopup(content_id, order) {
	openCenteredWindow('galeria.php?content_id=' + content_id + '&order=' + order, 'sex_gallery_popup', 334, 375, 'scrollbars=no, resizable=no')
}

function openEventGalleryPopup(content_id) {
	openCenteredWindow('galeria.php?content_id=' + content_id, 'event_gallery_popup', 346, 375, 'scrollbars=no, resizable=no')
}

function openMagazineGalleryPopup(content_id) {
	openCenteredWindow('galeria.php?content_id=' + content_id, 'magazine_gallery_popup', 346, 375, 'scrollbars=no, resizable=no')
}

function openPhotoGalleryPopup(category_id, order) {
	if (!order) order = 0;
	openCenteredWindow('galeria.php?category_id=' + category_id+ '&order=' + order, 'photo_gallery_popup', 370, 385, 'scrollbars=no, resizable=no')
}

function open3rdTimeGalleryPopup(content_id, order) {
	if (!order) order = 0;
	openCenteredWindow('galeria.php?content_id=' + content_id + '&order=' + order, '3rd_gallery_popup', 346, 375, 'scrollbars=no, resizable=no')
}

function openEventSevensPopup(id) {
	openCenteredWindow('popup_sevens.php?id=' + id, 'event_sevens_popup', 412, 586, 'scrollbars=no, resizable=no')
}

function openEventHighlightedPopup(id, context_path) {
	openCenteredWindow(context_path + '/popups/destacado.php?id=' + id, 'event_highlighted_popup', 412, 586, 'scrollbars=no, resizable=no')
}

function openPoliticsPopup(context_path) {
	openCenteredWindow(context_path + '/popups/politicas.php', 'politics_popup', 350, 320, 'scrollbars=no, resizable=no')
}

function openLegalPopup(context_path) {
	openCenteredWindow(context_path + '/popups/legal.php', 'legal_popup', 350, 320, 'scrollbars=no, resizable=no')
}

function prox() {
	alert("Podés visitar esta sección en los proximos días");
}