﻿function popUp(url) {
    newWindow(url, 'popupwindow', 150, 150, 'yes', 'no');
}

function imagePopUp(url) {
    newWindow(url, 'imagepopup', 800, 730, 'no', 'no');
}

function printPopUp(url) {
    newWindow(url, 'printversion', 600, 400, 'yes', 'no');
}

function fckPopup(url) {
    newWindow(url, 'fck', 640, 500, 'yes', 'no');
}

function linkPopUp(url) {
    newWindow(url, 'linkpopup', 760, 600, 'yes', 'no');
}

function cropPopUp(url) {
    newWindow(url, 'imagepopup', 800, 600, 'no', 'no');
}

function txtPopup(url) {
    newWindow(url, 'txt', 640, 600, 'yes', 'no');
}

function colorPopup(url) {
    newWindow(url, 'color', 288, 350, 'no', 'no');
}

function newWindow(mypage, myname, w, h, scroll,resize) {
    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
    winprops = 'height=' + h + ',width=' + w + ',top=' + wint + ',left=' + winl + ',scrollbars=' + scroll + ',resizable=' + resize;
    window.open(mypage, myname, winprops);
}
