function openImagePopup(url,width,height)
{
	window.open (url, 'image', config='height='+height+', width='+width+', toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, directories=no, status=no')
}

function showMe(id)
{
	elem = document.getElementById(id);
	elem.style.display = "block";
}


function hideMe(id)
{
	elem = document.getElementById(id);
	elem.style.display = "none";
}

function detectAndShow(id)
{
	if ((screen.width > 1024 ) && (screen.height > 768 )){
		
		elem = document.getElementById(id);
		elem.style.display = "block";
		
	} 
}

function showHide(id)
{
	elem = document.getElementById(id);
	if (elem.style.display == "block")
	{ elem.style.display = "none";}
	else
	{elem.style.display = "block"}
}

