// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function popup_photo_browser(product_id,photo_id) {
	var path = '/products/' + product_id + '/photo_browser/?photo_id=' + photo_id;
  //alert(path) 
  //window.open(path,'Photo Browser', 'width=650,height=450,scrollbars=yes');
	//return false;
	popUp(path);
}


function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=520,height=560');");
}