function getElementByID(id)
{
	var element = null;
	if(document.getElementById)
	{
		element = document.getElementById(id);
	}
	return element;
}
function openWindow(url, target, style)
{
	window.open(url, target, style);
}
