﻿$(document).ready(function() {
    if (document.getElementById('hfLogin').value == "false") {
        alert("Session has expired, please login again");
        parent.window.location.href = "http://www.locallinkup.com";
    }
});

function cancel() {
    parent.hideModalWindow('editDescriptionModal');
}

function save() {
    var d = new Date()
    var time = d.getTime();
    var strURL = parent.document.getElementById('hfHandlerURL').value + "/setDescriptionHandler.ashx?d=" + time; ;
    $.post(strURL, {
        compID: parent.document.getElementById('hfCompanyID').value,
        text: document.getElementById('txtDescription').value,
        plus: parent.document.getElementById('hfIsPlinkPlus').value
    }, function(data) {
        if (data == "success") {
            parent.hideModalWindow('editDescriptionModal');
            parent.setNewDescription(document.getElementById('txtDescription').value.replace(/(\r\n)|(\n)/g, "<br />"));
        }
    });
}
