﻿var targetUrl;
function showConfirmation(url) {
    targetUrl = url;
    window.open('../../confirm.aspx','confirm','width=420,height=320,resizable=no').focus();
}
function showConfirmation(link) {
    targetUrl = link.href;
    window.open('../../confirm.aspx','confirm','width=420,height=320,resizable=no').focus();
}
function showEnterUSDialog(url) {
    targetUrl = url;
    window.open('enterus.aspx','confirm','width=440,height=250,resizable=no,location=no').focus();
}
function showEnterInternationalDialog(url) {
    targetUrl = url;
    window.open('enterinternational.aspx','confirm','width=440,height=230,resizable=no,location=no').focus();
}