var scr = document.getElementsByTagName("script");
var guidData = scr[scr.length-1].getAttribute("data-info");
if(guidData){
document.write("
");
if(guidData.indexOf("|") != -1){
var guidDatas = guidData.split("|");
document.write(guidDatas.join(" >> "));
}else
document.write(guidData);
document.write("
");
}