<!-- begin

function ShowDataSend() {

	window2=window.open('','messageWindow','alwaysRaised=yes,scrollbars=yes,width=500, height=290');

	window2.document.write('<HTML><HEAD><TITLE>DataSend Interprocess Communication Control</TITLE></HEAD>');

	window2.document.write('<STYLE TYPE=\"text/css\">');
	window2.document.write('UL { color:black; font-family: Arial, Helvetica, Verdana, sans-serif}');
	window2.document.write('A { color:blue; font-family: Arial, Helvetica, Verdana, sans-serif; font-size:90%}');
	window2.document.write('A:hover { color: red }');
	window2.document.write('P { color:black; font-family: Arial, Helvetica, Verdana, sans-serif}');
	window2.document.write('.sectiontitle { font-weight:bold; text-decoration:underline; font-family: Arial, Helvetica, Verdana, sans-serif; color:olive; font-size:125% }');
	window2.document.write('</STYLE>');

	window2.document.write('<BODY><Center>');
	window2.document.write('<P class=\"sectiontitle\">DataSend - the better Interprocess Communication Control');
	window2.document.write('<P><TABLE><UL><LI>Send Variants of any type from one VB application to another');
	window2.document.write('<LI>Allows Arrays of Variants of mixed types including nested arrays');
	window2.document.write('<LI>No size limit on a single transfer');
	window2.document.write('<LI>Exchange data with applications not using DataSend');
	window2.document.write('<LI>An additional server/client protocol which works like DDE');
	window2.document.write('<LI>None of the DDE drawbacks');
	window2.document.write('<LI>DataSend is fast - it uses the WM_COPYDATA message</UL></TABLE>');
	window2.document.write('<B>DataSend needs no licence in the Visual Basic design environment, ');
	window2.document.write('Download it now! Find the DataSend link on the navigation strip.</B>');
	window2.document.write('<P><A Href=\"javascript:window.close()\">Close</A>');
	window2.document.write('</Center></BODY></HTML>');

	window2.document.bgColor='#ffffcc';
}

function TestDataSend() {
	if (document.cookie.length > 0) return;
	ShowDataSend();
	SetCookie();
}

function ShowCookie() {
	if (document.cookie.length > 0) {
		alert('Cookie exists: ' + document.cookie);
	} else
		alert('No Cookie');
}

function SetCookie() {
	var today = new Date()
	var expires = new Date()
	expires.setTime(today.getTime() + 1000*60*60)
	document.cookie = "Shown=yes;path=/;expires=" + expires.toGMTString();
}

function DeleteCookie() {
	var today = new Date()
	var expires = new Date()
	expires.setTime(today.getTime() - 1000)
	document.cookie = "Shown=yes;path=/;expires=" + expires.toGMTString();
}

// end -->
