leftPos = 0
topPos = 0
if(screen) {
leftPos = (screen.width/2) - 251
topPos = (screen.height/2) - 162
}

function openWinLCC() {

newWindow = window.open('','newWin','width=400,height=200,left='+leftPos+',top='+topPos)
newWindow.document.write ("<html><head><title>Laminated Course cards</title></head>"
	+ "<body bgcolor='#FFFFFF' text='#000000'><div align='center'>"
	+ "<h3><font face='Arial' color='#000000' style='letter-spacing: 1pt'>Laminated Course cards<br><br></font></h3></div>"
    + "<div align='left'><font face='Arial' size='2' color='#336600'>"
    + "Study Kit includes the following 8.5 inches x 11 inches 4 page laminated Study Cards:<br>"
    + "<ol style='line-height: 150%; letter-spacing: 0pt; font-weight: bold'><li>HIPAA Overview Reference Card </li><br>"
    + "<li>HIPAA Privacy Rule Reference Card </li><br>"
    + "<li>HIPAA Security Rule Reference Card</li></ol></font></div></body></html>")
newWindow.document.close()
}

function openWinCAPS() {
newWindow = window.open('','newWin','toolbar=no,location=no,scrollbars=no,status=yes,width=450,height=270,left='+leftPos+',top='+topPos)
newWindow.document.write ("<html><head><title>Laminated Course cards</title></head>"
	+ "<body bgcolor='#FFFFFF' text='#000000'><div align='center'>"
	+ "<h3><font face='Arial' color='#000000' style='letter-spacing: 1pt'>Compliance Action Pack for Security (CAPS)<br><br></font></h3></div>"
    + "<div align='left'><font face='Arial' size='2' color='#336600'>"
    + "CAPS includes the following ebooks in Adobe Acrobat format(PDF):<br>"
    + "<ol style='line-height: 150%; letter-spacing: 0pt; font-weight: bold'>" 
    + "<li>Seven Steps to HIPAA Security Compliance</li>"
    + "<li>HIPAA Security Rule: Administrative Requirements</li>"
    + "<li>HIPAA Security and Risk Analysis</li>"
    + "<li>HIPAA Security and Role Based Access Control (RBAC)</li>"
	+ "<li>HIPAA Security and Contingency Planning</li>"
	+ "<li>HIPAA Security and Authentication</li>"
	+ "<li>Security Audit and HIPAA Evaluation (RBAC)</li>"
    //+ "<li>HIPAA Security Strategy and Policies</li>" 
    + "</ol></font></div></body></html>")
newWindow.document.close()
}
