 var theme = "bluelighting";

 var win;


    /**
     * Show a new window using the prototype based window library
     */
    function showWindow()
    {
        win = new Window({className: theme, width:430, height:555, title: "Radiology Management Content Search", url: "rmcontact.asp"});
	    win.showCenter();

    }
    
    function showFriendWindow(nArticleID)
    {
    
     win = new Window({className: theme, width:430, height:455, title: "Radiology Management Send to Colleague", url: "rmsendtofriend.asp?articleid=" + nArticleID});
    	    win.showCenter();

    
    }
    

    function closeWindow()
    {

        win.destroy();
    }
