/*Olive Barn Restock Notification */
function RestockEmailMe(account,store,email,subject,itemname,code,producturl){
	var newwindow = store + "restock.php?url=" + escape(window.location) + "&email=" + escape(email) + "&store=" + escape(account) + "&itemname=" + escape(itemname) + "&subject=" + escape(subject) + "&itemno=" + escape(code) + "&producturl=" + escape(producturl);
	var popUpWin=0;
	if(popUpWin){
    if(!popUpWin.closed) popUpWin.close();
  }
	popUpWin = open(newwindow ,'tfpopup','resizable=yes, left=0, top=0, scrollbars=no, width=800, height=600');
	popUpWin.focus();
}

