// JavaScript Document

function popupWindow(target,wide,high)
{
    type="resizable,width="+wide+",height="+high+",left=0,top=0" //,scrollbars
    location_window = window.open(target,"locate",type);
}

function popupWindow2(target,wide,high)
{
    type="resizable,width="+wide+",height="+high+",left=0,top=0,scrollbars"
    location_window = window.open(target,"locate",type);
}

function popupWindow3(target,wide,high)
{
    type="width="+wide+",height="+high+",left=0,top=0,scrollbars"
    location_window = window.open(target,"_blank",type);
}