﻿if (!window.uc)
	uc = {};

uc.Page = function() 
{
}

uc.Page.prototype =
{
	handleLoad: function(control, userContext, rootElement) 
	{
		this.control = control;
		rootElement.addEventListener("MouseLeftButtonDown", Silverlight.createDelegate(this, this.handleMouseDown));
	},
	handleMouseDown: function(sender, eventArgs) 
	{
	}
}

function OCS_E(sender, args)
{
 sender.findName("txtocs").Visibility="Visible";
}
function OCS_L(sender, args)
{
 sender.findName("txtocs").Visibility="Collapsed";
}

function EX_E(sender, args)
{
 sender.findName("txtex").Visibility="Visible";
}
function EX_L(sender, args)
{
 sender.findName("txtex").Visibility="Collapsed";
}

function OLM_E(sender, args)
{
 sender.findName("txtolm").Visibility="Visible";
}
function OLM_L(sender, args)
{
 sender.findName("txtolm").Visibility="Collapsed";
}

function OC_E(sender, args)
{
 sender.findName("txtoc").Visibility="Visible";
}
function OC_L(sender, args)
{
 sender.findName("txtoc").Visibility="Collapsed";
}

function OO_E(sender, args)
{
 sender.findName("txtoo").Visibility="Visible";
}
function OO_L(sender, args)
{
 sender.findName("txtoo").Visibility="Collapsed";
}


