//This is Javascript function that pops open a new window

function popup(theURL, theWidthandHeight)
	{
		window.open(theURL,"tCw",theWidthandHeight);
	}
