﻿function getPrint(print_area)
		{	
	
            window.open('/PrintWindow.aspx','Print','toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=no,width=450,height=300,top=150,left=300'); 
		}	

		

var tgs = new Array( 'p','li','span','strong','small','td','div','a','ul');

//Specify spectrum of different font sizes:
var szs = new Array( '10','12','14','16');
var startSz = 1;

function ts( trgt,inc ) {

	if (!document.getElementById) return
	var d = document,cEl = null,sz = startSz,i,j,cTags;
	
	sz += inc;

	if ( sz < 0 || sz>3 ) sz = 0;

	startSz = sz;
			
	if ( !( cEl = d.getElementById( trgt ) ) ) cEl = d.getElementsByTagName( trgt )[ 0 ];

	cEl.style.fontSize = szs[ sz ];

	for ( i = 0 ; i < tgs.length ; i++ ) {
		cTags = cEl.getElementsByTagName( tgs[ i ] );
		for ( j = 0 ; j < cTags.length ; j++ ) cTags[ j ].style.fontSize = szs[ sz ]+ "px";
	}
}

function shareThis()
{
alert('Coming Soon...');
}
function OpenWindow(urlToLoad)
         {
           newWindow =  window.open(urlToLoad,'mywindow','menubar=1,resizable=1,width=400,height=330,toolbar=0,status=1,menubar=Yes');
           if (window.focus){newWindow.focus();}
            return false;
         }

