function a_href_open(URL,classname)
{
document.write("<a href=\"");
document.write(URL);
document.write("\" class=\"");
document.write(classname);
document.write("\">");
}

function a_href_open_blank(URL,classname)
{
document.write("<a href=\"");
document.write(URL);
document.write("\" class=\"");
document.write(classname);
document.write("\" target=\"_blank\">");
}


function a_href_close()
{
document.write("</a>");
}


function clickbankhop(goto,linktitle)
{

document.write("<a href=\"");
document.write("http://14855.");
document.write(goto);
document.write(".hop.clickbank.net/");
document.write("\" target=\"_blank\">");
document.write(linktitle);
document.write("</a>");

}

function clickbankhop_open(goto)
{
document.write("<a href=\"");
document.write("http://14855.");
document.write(goto);
document.write(".hop.clickbank.net/");
document.write("\" target=\"_blank\">");

}


document.include = function (url) {
 if ('undefined' == typeof(url)) return false;

// for Mozilla
if (window.XMLHttpRequest) {
re = new XMLHttpRequest();
}
// for IE
else if (window.ActiveXObject) {
re = new ActiveXObject("Microsoft.XMLHTTP");
}

if (re!= null) {
re.open("GET",url,false);
re.send(null);
document.write(re.responseText);
}

}

//document.include("file.html");

//document.write("<base href=\"http://forex.fdns.net/\" />");
