$(document).ready(function() {
    var DocumentURL = document.URL;
    if (DocumentURL.search(/=/) < 0) {
        var DocumentURLArray = DocumentURL.split(".com/");
        //var DocumentURLArray = DocumentURL.split("Desktop/");
        var DocumentURLArray1 = DocumentURLArray[1].split("/");
        var TheID = DocumentURLArray1[0];
    } else {
        if (DocumentURL.search("formid") >= 0) {
            var DocumentURLArray0 = DocumentURL.split(".com/");
            //var DocumentURLArray0 = DocumentURL.split("Desktop/");
            var DocumentURLArray1 = DocumentURLArray0[1].split("/");
            var DocumentURLArray2 = DocumentURL.split("=");
            var TheID = DocumentURLArray1[0] + "&formAction=" + DocumentURLArray2[1] + "=" + DocumentURLArray2[2];
        } else if (DocumentURL.search("faqID") >= 0) {
            var DocumentURLArray0 = DocumentURL.split(".com/");
            //var DocumentURLArray0 = DocumentURL.split("Desktop/");
            var DocumentURLArray1 = DocumentURLArray0[1].split("/");
            var DocumentURLArray2 = DocumentURL.split("?");
            var TheID = DocumentURLArray1[0] + "&" + DocumentURLArray2[1];
        } else {
            var DocumentURLArray = DocumentURL.split("=");
            var TheID = DocumentURLArray[1];
        }
    }
    $(".print_fnc").attr({ "href": "\/preview.aspx?template=Print&id=" + TheID });
    //$(".print_fnc").attr({ "href": "javascript:popup('http://www.markimicrowave.com/preview.aspx?template=Print&id=" + TheID + "','pagename','615','" + $(document).height() + "','center','front');" });
});

var popupWindow = null;

function popup(mypage, myname, w, h, pos, infocus) {
    if (pos == 'random') {
        LeftPosition = (screen.width) ? Math.floor(Math.random() * (screen.width - w)) : 100; TopPosition = (screen.height) ? Math.floor(Math.random() * ((screen.height - h) - 75)) : 100;
    } else {
        LeftPosition = (screen.width) ? (screen.width - w) / 2 : 100; TopPosition = (screen.height) ? (screen.height - h) / 2 : 100;
    }
    settings = 'width=' + w + ',height=' + h + ',top=' + TopPosition + ',left=' + LeftPosition + ',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes'; popupWindow = window.open('', myname, settings);
    if (infocus == 'front') { popupWindow.focus(); popupWindow.location = mypage; }
    if (infocus == 'back') { popupWindow.blur(); popupWindow.location = mypage; popupWindow.blur(); }
}


function mailpage() {
    mail_str = "mailto:?subject=I thought you might be interested in the \"" + document.title + "\" page at http://www.markimicrowave.com/";
    mail_str += "&body=I wanted to share with you the \"" + document.title + "\" page at http://www.markimicrowave.com/";
    mail_str += ". You can view it at, " + escape(location.href);
    location.href = mail_str;
}