function cookieVal(cookieName){
thisCookie = document.cookie.split("; ");
for(i=0; i<thisCookie.length; i++){
if(cookieName == thisCookie[i].split("=")[0]){
return thisCookie[i].split("=")[1];
}
}
return "x";
}

function pop01(){
if(cookieVal("notice") != "1"){
window.open("pop.php","notice","height=420, width=450, left=10, top=10");
}
}


function WriteEmbed(emb_id){ 
    document.write(document.getElementById(emb_id).value);
}


