function openLink(oururl) { // SP2 friendly version hopefully
	if (oururl) {
		try	{
			window.open(oururl);		
			return false;
		} catch (e)	{
			return true; // Just use normal link if popup cannot open
		}
	}
}

