function change_color(id,color){
	e = document.getElementById(id);
	e.style.backgroundColor = color;
}

var popUpWindow=0;
function pop_up(url,left,top,width,height){

	if (popUpWindow){
		if(!popUpWindow.closed) popUpWindow.close();
	}

	popUpWindow = open(url,'popUpWindow','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top+'');

}

$(document).ready(function() {
	if (location.hash == '#findourwines') {
		setTimeout("obm2.show();", 1000);
	}
});
