﻿// JScript File

function openLW(LWHref,LWWidth,LWHeight,Title)
	{
		myLightWindow.activateWindow({
			href: LWHref, 
			title:'',
			iframeEmbed: true,
			width:LWWidth,
			height:LWHeight
		});
	}

function closeLW(){
		myLightWindow.deactivate();
	}
