/*
$Id: popup_notifyme.js,v 1.0 2009/10/26 17:02:59 skiv Exp $
vim: set ts=2 sw=2 sts=2 et:
*/
function popup_notifyme(productid, title) {

  max_x = 420;
	max_y = 420;

  var url = xcart_web_dir + '/notifyme.php?productid=' + productid + '&title=' + title;

  var res = false;
	if (current_area == 'C' && window.popupOpen) {
		res = popupOpen(
      url,
      title,
      Math.max(Math.min(max_x, $(window).width() - 150), 420),
      Math.max(Math.min(max_y, $(window).height() - 150), 420)
    );
	}

  if (res)
    return true;

	return window.open(
    url,
		'images',
		'width=' + max_x + ',height=' + max_y + ',toolbar=no,status=no,scrollbars=yes,resizable=yes,menubar=no,location=no,direction=no'
	);
}
