﻿// JScript File

		
function Calendar(ctrl, event)
{
	show_coords(event);				
	var x = event.clientX
	var y = event.clientY
	x = x + 18;
	y = y + 60;
	window.open("Calendar.aspx?ctrl=" + ctrl , "tinyWindow33", "top=" + y + ",left=" + x + ",titlebar=no,strollbars=no,status=no,location=no,menubar=no,toolbar=no,width=138,height=142")	
    //window.open("Calendar.aspx?ctrl=" + ctrl , "tinyWindow33", "top=" + y + ",left=" + x + ",titlebar=yes,strollbars=yes,status=yes,location=yes,menubar=yes,toolbar=yes,width=138,height=142")	
}

function show_coords(event)
{
    x=event.clientX
    y=event.clientY
    //alert("X coords: " + x + ", Y coords: " + y)
    window.status = "X coords: " + x + ", Y coords: " + y;
}

	