function detectScreen()
{
	if(screen.height < 1024)
	{
		$('whole').style.top = '0';	
		$('whole').style.marginTop = '0';		
	}
	if(screen.width < 1024)
	{
		$('whole').style.left = '0';
		$('whole').style.marginLeft = '0';			
	}
}
function showProductDiv(active, inactive1, inactive2)
{
	document.getElementById(active).style.display='block';
	document.getElementById(inactive1).style.display='none';
	document.getElementById(inactive2).style.display='none';		
}
