﻿function showPopup(url) {
    newwindow=window.open(url,'name','height=600,width=800,top=200,left=300,resizable');
    if (window.focus) {newwindow.focus()}
}
