// JavaScript Document
//Works

function newWindow(location, wid, hei) {
	newWindow = window.open(""+location+"", "newWin", "toolbar=no, location=no, scrollbars=yes, width="+wid+", height="+hei+" ")
}

function iDownload(iframeSrc) {
if (document.images) {
 document.getElementById('iframeimg').src = iframeSrc
 }
}

function submitIt(assetForm) {
 assetOption = -1
 for (i=0; i<assetForm.assetCt.length; i++){
  if (assetForm.assetCt[i].checked) {
   assetOption = i
   fname = document.getElementById('iframeimg').src
   iframeimg.document.execCommand('saveas', null ,fname)
  }
 }
 if (assetOption == -1) {
  alert("Please select an asset for download")
  return false
 }
return true
}

