function GetSlogan(index, isData)
{
	var slogan = ["Archiver stores <b>complete history</b><br>of all reports and media across<br><b>Pregnancies</b>!!",
				"Archiver combines mini-PACS<br>digital imaging with full reporting",
				"Archiver provides <b>continuous<br>video recording capability</b>",
				"Archiver - the OB&amp;GYN<br>practitioner's best friend",
				"Archiver communicates with<br>major IT components such as <b>PACS, RIS <br>and ATD</b>",
				"Archiver is supported by a very<br><b>simple but effective user interface</b>",
				"Ultrasound's built in repository loss<br>is <b>prevented</b> by using the Archiver."];

	var data = ["Archiver's Pregnancy entity (that generally can not be defined in U/S machines)<br>consists of specific data such as growth charts, anomalies, relevant examinations<br>and pregnancy outcome. The practitioner can review patient's history across<br>pregnancies",
				"Archiver provides this unique integration where usually these capabilities are<br>incorporated into two different systems -<br>RIS for reporting and PACS for imagery storage.",
				"This video recording capability of U/S examinations has no practical time limits<br>and is stored in compact encoded format that requires very low storage volume.<br>The full recording of exams and procedures generates complete high fidelity<br>visual protocol and a digital record for continuous payback.",
				"Archiver shortens reporting time, dramatically improves throughput in clinics,<br>and ensures rapid return on investment by providing OB&GYN ultrasound practitioners<br>with the tools to effectively shorten the reporting and documentation process",
				"The Archiver provides an interconnection layer between an ultrasound<br>(as an example of imaging modality) and the organization's Healthcare IT.",
				"This interface allows rapid collection of information for the generation<br>of relevant documentation (e.g. fetal anomaly explanations, pre-canned text<br>for every text box, automatically generated pregnancy schedule of exams<br>and tests throughout a pregnancy) for reports printout and CD/DVD burning.",
				"Upon replacement of the U/S all the data that has be stored in the ultrasound<br> needs to be archived elsewhere or else it will be lost! With the Archiver, which<br>is independent of a specific ultrasound machine, only the interconnecting cables<br>are switched from the old to the new since  Archiver is designed to <b>connect with<br>any ultrasound equipment</b>."]
				
	if (isData)				
		return data[index]
	else
		return slogan[index]
}

function WriteSlogan(id, data)
{
	var day = new Date()
	var i = day.getDay()
	i= 3;
	str = GetSlogan(i, false)

	document.getElementById(id).innerHTML = str
	str = GetSlogan(i, true)
	document.getElementById(data).innerHTML = str	
}

PreImages("app_images/headBG.jpg", "app_images/menuBG.jpg", "app_images/home.jpg")

