﻿function Navigation_Navigate(href) {
    window.location.href = href;

    return false;
}

function Navigation_NavigateTopContent(href) {
    top.document.getElementById("topContentIFrame").src = href;
}

function Navigation_NavigateContent(href) {
    window.parent.frames[0].location.href = href;
}

function Navigation_Refresh() {
    window.location.href = window.location.href;
}

function Navigation_OpenWindow() {
    var xLeft = 150; //Will keep x position from Left.    
    var yTop = 0;   //This will put your new window on           
    var sUrl = "PrintPage.aspx"; //New Window Name. 
    var sFeatures = "height=680,width=700,left=" + xLeft + ",top=" + yTop + ",status=no,toolbar=no,menubar=no, location=no"; //This will give all these features to your 
    
    win = window.open(sUrl, "Print", sFeatures);
    win.focus(); // This will give focus to your newly
}
