function showPopup(g){
if( !document.getElementById ) return;
document.getElementById('popup').style.display = 'block';

setTimeout(delayer(g),1000);
}

function hidePopup(){
if( !document.getElementById ) return;
document.getElementById('popup').style.display = 'none';
}
function delayer(g){
    window.location = "http://brohat.org/checkmystyleout/"+g+" ";
}
function gogogo(g){
	window.location = g;
}