/*
	Devcom
*/

function enhanceLink(elm,url) {
	if(elm != null) {
		elm.onclick = function() {
			window.open(url)
			return false;
		}
	}
}

function getPopupLinks() {
	var allLinks = document.getElementsByTagName('a');
	for(i=0;i<allLinks.length;i++) {
		if(allLinks[i].className.indexOf('open') != -1) {
			enhanceLink(allLinks[i],allLinks[i].href);
		}
	}

}

window.onload = function() {
	enhanceLink(document.getElementById('n_store'),'http://www.wisper.se/shop2/');
	enhanceLink(document.getElementById('n_email-subscription'),'http://www.wisper.se/shop2/index.php?_a=viewDoc&docId=9');
	enhanceLink(document.getElementById('n_faq'),'http://www.wisper.se/shop2/index.php?_a=viewDoc&docId=9');
	enhanceLink(document.getElementById('n_glossary'),'http://www.wisper.se/shop2/index.php?_a=viewDoc&docId=9');
	getPopupLinks();
}

