﻿var newwindow;
function popupwindow(url)
{
	newwindow=window.open(url,'name','height=600,width=2000');
	if (window.focus) {newwindow.focus()}
}

function validateLengthMessage(oSrc, args)
{
   args.IsValid = (args.Value.length <=65000);
}
