// JavaScript Document

var txtSz = 1.0;
function SMF_manageZoom(operation, strIdTag) {
	//zoom all
    //var tagBody = document.getElementsByTagName(strIdTag)	
	//tagBody[0].style.fontSize = ts;	
	var tagBody = document.getElementById(strIdTag)	
    txtSz = (operation=="plus") ? txtSz+0.10 : txtSz-0.10;
    if (txtSz>1.8) txtSz = 1.8;
    if (txtSz<1.0) txtSz = 1.0;
    ts = txtSz+"em";
    tagBody.style.fontSize = ts;	
} 

function SMF_managePrint(strIdTag){
	  var content = document.getElementById(strIdTag);
	  var SMF_CNT_DEFAULT_HEADER= '<html><head><link rel="stylesheet" type="text/css" href="modules/templates/SMF_default/css/printStyleSheet.css" /></head><body>';
	  var SMF_CNT_DEFAULT_FOOTER= '</body></html>';
	  var printPopUp = window.open(' ', 'popimpr','status=no,directories=no, toolbar=no, location=no, width=600, height=400');	 
	  printPopUp.document.write( SMF_CNT_DEFAULT_HEADER+content.innerHTML+SMF_CNT_DEFAULT_FOOTER);
	  printPopUp.document.close();
	  printPopUp.print( );
	  printPopUp.close();
} 

function openWin(strUrl){
	window.open(strUrl, 'Curriculum','status=no,directories=no, toolbar=no, location=no, width=400, height=450, top=100, left=100');
} 