/*--- Avanquest WebEasy Custom Script ---*/

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
<title>View Patient Images</title> 
</head> 
 
<body> 
 
<div> 
<script language='javascript' > 
function openViewer() { 
var clinicUid='22008'; 
var token='12d3ee1ef97392e564120e13d5d013'; 
var pID = document.getElementById('patientID' ).value; 
if ( pID.length == 0 ) 
{ 
alert( 'Please enter a patient ID' ); 
} 
else { 
window.open( 'https://www.antechimagingservices.com/mainsite/viewStudy.html?&optionalAuthentication=true&token=' + token + '&orgUid=' + clinicUid + '&patientID=' + pID, '', '' ); 
} 
} 
</script> 
<table width='100%'> 
<tr><td><input type='text' name='patientID' id='patientID' size='16' maxlength='25' /> 
<input type='button' value='Search' onclick='openViewer();' /> 
</td></tr> 
</table> 
</div> 
 
</body> 
</html>

/*--- EndOfFile ---*/

