

﻿<!--
function popup(mylink, windowname, width, height)
{
    if (! window.focus) return true;
    
    var href;
    if (typeof(mylink) == 'string')
        href = mylink;
    else
        href = mylink.href;

    window.open(href, windowname, 'width=' + width + ',height=' + height + ',scrollbars=no,location=no,status=no');
    
    return false;
}

function popup2(mylink, windowname, width, height)
{
    if (! window.focus) return true;
    
    var href;
    href = mylink;

    window.open(href, windowname, 'width=' + width + ',height=' + height + ',scrollbars=yes,resizable=yes,location=no,status=no');
    
    return false;
}

function targetopener(mylink)
{
//    alert('sadf');
//    var email = window.document.getElementById("Email").value;
//    var name = window.document.getElementById("Name").value;
//    
//    if (email == '' || name == '' ) return;
//    if (! (window.focus && window.opener))return true;
//        window.opener.focus();
//    window.opener.location.href = mylink;
//    self.close();
//    
//    
//    if (window.document.getElementById("Email").value != '' &&
//        window.document.getElementById("Name").value != '' &&
//        window.document.getElementById("lbError").innerText == '')
//    {
//        if (! (window.focus && window.opener))return true;
//            window.opener.focus();
//        if (! closeonly)window.opener.location.href=mylink;
//        self.close();
//        return false;
//    }
}
//-->












