function wwJump (link) {
	if (link != "http://www.mysigg.com/") {
    	window.location.href=link;
    } else {  
    	if (window.confirm("You are leaving SIGG.com and will be redirected to MySigg.com.\nPress OK to confirm, press CANCEL to stay.")) {
    		window.location.href=link;
    	}
    	else {
    		return false;
    	}
    }
}