﻿// JScript File
	    function ShowVenue(VenueID)
	    {
            w = window.open("venuecalendar.aspx?id="+VenueID,"_self","");	    
            w.focus();        
        }    
        
        
	    function ShowAct(ActID)
	    {
            w = window.open("actcalendar.aspx?actid="+ActID,"_self","");	            
            w.focus();        
        }    
        
        function ShowBlogger(ID)
	    {
            w = window.open("viewblogger.aspx?ID="+ID,"_self","");	            
            w.focus();        
        }    
        
        


