function Get_Cookie( check_name ) {
	// first we'll split this cookie up into name/value pairs
	// note: document.cookie only returns name=value, not the other components
	var a_all_cookies = document.cookie.split( ';' );
	var a_temp_cookie = '';
	var cookie_name = '';
	var cookie_value = '';
	var b_cookie_found = false; // set boolean t/f default f
	for ( i = 0; i < a_all_cookies.length; i++ )
	{
		// now we'll split apart each name=value pair
		a_temp_cookie = a_all_cookies[i].split( '=' );

		// and trim left/right whitespace while we're at it
		cookie_name = a_temp_cookie[0].replace(/^\s+|\s+$/g, '');

		// if the extracted name matches passed check_name
		if ( cookie_name == check_name )
		{
			b_cookie_found = true;
			// we need to handle case where cookie has no value but exists (no = sign, that is):
			if ( a_temp_cookie.length > 1 )
			{
				cookie_value = unescape( a_temp_cookie[1].replace(/^\s+|\s+$/g, '') );
			}
			// note that in cases where cookie is initialized but no value, null is returned
			return cookie_value;
			break;
		}
		a_temp_cookie = null;
		cookie_name = '';
	}
	if ( !b_cookie_found )
	{
		return null;
	}
}

function Set_Cookie( name, value, expires, path, domain, secure )
{
// set time, it's in milliseconds
var today = new Date();
today.setTime( today.getTime() );

/*
if the expires variable is set, make the correct
expires time, the current script below will set
it for x number of days, to make it for hours,
delete * 24, for minutes, delete * 60 * 24
*/
if ( expires )
{
expires = expires * 1000 * 60 * 60 * 24;
}
var expires_date = new Date( today.getTime() + (expires) );

document.cookie = name + "=" +escape( value ) +
( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) +
( ( path ) ? ";path=" + path : "" ) +
( ( domain ) ? ";domain=" + domain : "" ) +
( ( secure ) ? ";secure" : "" );
}

function Clicktoprint(TagID,siteID,pageID)
{
  var disp_setting="toolbar=no,location=no,directories=no,menubar=no,";
disp_setting+="scrollbars=yes,width=650, height=600, left=100,top=25";
var x ;
var pagetitle = document.getElementsByTagName("TITLE")[0].innerHTML;
var theader = document.getElementsByTagName("head")[0].innerHTML;
var fontSize =  readCookie("pwebsize");
var fontType =  readCookie("pwebtype");
var BASEURL  =  window.location.protocol + "//" + window.location.host;
//var URL = window.location.protocol + "//" + window.location.host + "/portal/pls/portal/xxuso_dbprov.webportal_util.putStyle";
var URL =  "/portal/pls/portal/xxuso_dbprov.webportal_util.putStyle"+"?p_siteid="+siteID+"&p_pageid="+pageID+"&p_fontsize="+fontSize+"&p_fonttype="+fontType;

var docprint=window.open("","",disp_setting);
    docprint.document.open();
docprint.document.writeln('<HTML>');  
docprint.document.writeln('<HEAD>'); 
docprint.document.writeln('<title>US Oncology Website</title>'); 
docprint.document.writeln('<BASE url="'+BASEURL+'" />'); 
docprint.document.writeln('</HEAD>'); 
//docprint.document.write(theader);
docprint.document.write('<body onLoad="self.print()">');
//docprint.document.write('<link rel="stylesheet" type="text/css" href="'+URL+'?p_siteid='+siteID+'&p_pageid='+pageID+'&p_fontsize='+fontSize+'&p_fonttype='+fontType+'" title="'+fontType+'" />');
docprint.document.write('<style type="text/css">');
docprint.document.write(' @import url("'+URL+'"); ');
docprint.document.write('.pagetitle1{Color:Black;Text-Decoration:none;Font-Family:Arial, Helvetica;Font-Size:14pt;Font-Weight:Bold;}')
docprint.document.write('</style>');
//docprint.document.write('<div class="pagetitle1">')
//docprint.document.write(pagetitle);
//docprint.document.write('</div>');
  docprint.document.write('<br>');
  docprint.document.write(document.getElementById(TagID).innerHTML);
  docprint.document.write('<br>');

docprint.document.write('');
docprint.document.write(' ');
docprint.document.writeln('</BODY>'); 
docprint.document.writeln('</HTML>'); 
   docprint.document.close();
   docprint.focus();
}

function Clickheretoprint(TagID,pTitle)
{
  var disp_setting="toolbar=no,location=no,directories=no,menubar=no,";
disp_setting+="scrollbars=yes,width=650, height=600, left=100,top=25";
var x ;
var pagetitle = document.getElementsByTagName("TITLE")[0].innerHTML;
var theader = document.getElementsByTagName("head")[0].innerHTML;

var docprint=window.open("","",disp_setting);
    docprint.document.open();
docprint.document.write('<head>')
docprint.document.write(theader);
docprint.document.write('</head>')
docprint.document.write('<title>US Oncology Website</title>');
docprint.document.write('<body onLoad="self.print()">');
docprint.document.write('<style type="text/css">');
docprint.document.write('.pagetitle1{Color:Black;Text-Decoration:none;Font-Family:Arial, Helvetica;Font-Size:14pt;Font-Weight:Bold;}')
docprint.document.write('</style>');
//alert("pTitle :"+pTitle);
if ( pTitle == 'Y' )
   {
   docprint.document.write('<div class="pagetitle1">');
   docprint.document.write(pagetitle);
   docprint.document.write('</div>');
   }
docprint.document.write('<br>');
docprint.document.write(document.getElementById(TagID).innerHTML);
docprint.document.write('<br>');

docprint.document.write('');
docprint.document.write(' ');
docprint.document.close();
docprint.focus();
}

function getCalendarDate()
{
   var months = new Array(13);
   months[0]  = "January";
   months[1]  = "February";
   months[2]  = "March";
   months[3]  = "April";
   months[4]  = "May";
   months[5]  = "June";
   months[6]  = "July";
   months[7]  = "August";
   months[8]  = "September";
   months[9]  = "October";
   months[10] = "November";
   months[11] = "December";
   var myDays= ["Sunday", "Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"];


   var now         = new Date();
   var daynumber   = now.getDay();
   var day		   = myDays[daynumber];
   var monthnumber = now.getMonth();
   var monthname   = months[monthnumber];
   var monthday    = now.getDate();
   var year        = now.getYear();
   if(year < 2000) { year = year + 1900; }
   var dateString = day   + ', ' + monthname +
                    ' ' +
                    monthday +
                    ', ' +
                    year;
   return dateString;
} // function getCalendarDate()

function getClockTime()
{
   var now    = new Date();
   var hour   = now.getHours();
   var minute = now.getMinutes();
   var second = now.getSeconds();
   var ap = "AM";
   if (hour   > 11) { ap = "PM";             }
   if (hour   > 12) { hour = hour - 12;      }
   if (hour   == 0) { hour = 12;             }
   if (hour   < 10) { hour   = "0" + hour;   }
   if (minute < 10) { minute = "0" + minute; }
   if (second < 10) { second = "0" + second; }
   var timeString = hour +
                    ':' +
                    minute +
                    ':' +
                    second +
                    " " +
                    ap;
   return timeString;
} // function getClockTime()


function gotoAdmin() {
   var pweburl = document.getElementById("pwebcurl");
   var path = escape(pweburl.value);
   path += "?_mode=16";
   window.location = path;
} // function gotoAdmin() 
