// JavaScript Document

function crackerJack() {
	
	if(navigator.appName.indexOf("Microsoft") != -1) {
		return window.location.href;
	}
	else {
		return document.location.href;	
	}
	
}
