function openWin(url,oW_width,oW_height,oW_menubar,oW_toolbar,oW_location,oW_status,oW_scrollbars,oW_resizable) {
	values = 'width=' + oW_width + ',height=' + oW_height + ',menubar=' + oW_menubar + ',toolbar=' + oW_toolbar + ',location=' + oW_location + ',status=' + oW_status + ',scrollbars=' + oW_scrollbars + ',resizable=' + oW_resizable;
	window.open(url,'_blank',values);
	return false;
}

function removeFavorite(id){
	document.forms.Cart.pdoId.value = id;
	document.forms.Cart.submit();
}

Event.observe(window, 'load', function(){ef_msg($('global_msg'))}, false);
function ef_msg(elm) {
	if (elm != null) 
		new Effect.Highlight(elm);
}