function print( link ) { 
	window.open( '?' + link + '&print=1', 'print', 'scrollbars=yes,status=no,width=600,height=600' );
}

function swapClass( subMenuId, stan ) {
	document.getElementById( subMenuId ).style.display = stan;
    if( subMenuId.substr(7) > 6 ) {
        document.getElementById( subMenuId ).style.right = 0;
	}
	else {
		document.getElementById( subMenuId ).style.left = 0;
	}
}
