function showSubmenu(idElement){
	document.getElementById(idElement).style.display = 'block';	
}

function hideSubmenu(idElement){
	document.getElementById(idElement).style.display = 'none';
	
}	

function printPopup()
{
var generator=window.open('','name','height=500,width= 660,status=1,resizable=0');

generator.document.write('<html><head><link rel="stylesheet" href="styles/print.css"></head><body onload="window.print();">' + document.getElementById('content').innerHTML + '</body></html>');

}

