// Greg Tims JavaScript's
function viewLegal(theDoc){

	if(theDoc=='ppol'){
		theDoc = 'privacyPolicy.htm';
	}
	if(theDoc =='tandc'){
		theDoc = 'termsAndConditions.htm';
	}
		var winWidth = '640';
	var winHeight = '380';

	var lPos = (screen.width/2)-(winWidth/2);
	var tPos = (screen.height/2)-(winHeight/2);
	
	newWindow = window.open(theDoc, 'legalThings', 'left='+lPos+', top='+tPos+', width='+winWidth+' ,height='+winHeight+', toolbar=no,scrollbars=yes, resizable=yes');         
}
