/*
 * FM to open link in new window
 * Copyright 2011 Bartosz Rakowiecki
 */
 
 function openNW(website) {
	//alert(website);
	window.open(website);
 }
