37
| <![CDATA[<style type="text/css">
<!--
.style1 {font-size: xx-small}
-->
</style>]]>
|
5
| <![CDATA[<script>
function abreUrl(url)
{
var largura
if(screen.width >=800)
largura = 800;
else
largura = 600;
if(url != '')
window.open(''+url,'','width=' + largura + ',height=500,top=5,left=5,scrollbars=yes, resizable=yes, menubar=yes, location=yes, toolbar=yes');
}
</script>]]>
|
17
| <![CDATA[<script type="text/javascript">
function displaydesc(which, descriptionarray, container){
if (document.getElementById)
document.getElementById(container).innerHTML=descriptionarray[which.selectedIndex]
}
function jumptolink(what){
var selectedopt=what.options[what.selectedIndex]
if (document.getElementById && selectedopt.getAttribute("target")=="newwin")
window.open(selectedopt.value)
else
window.location=selectedopt.value
}
</script>]]>
|
49
| <![CDATA[<script language="JavaScript1.2">mmLoadMenus();</script>]]>
|
72
| <![CDATA[<script language="JavaScript1.2">
var ie=document.all&&navigator.userAgent.indexOf("Opera")==-1
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1
//Specify IFRAME display attributes
var iframeprops='width="500" height="71" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"'
var randomcontent=new Array()
randomcontent[0]="http://www.pregao.sp.gov.br/imagens/head_grf01.jpg"
randomcontent[1]="http://www.pregao.sp.gov.br/imagens/head_grf02.jpg"
randomcontent[2]="http://www.pregao.sp.gov.br/imagens/head_grf03.jpg"
randomcontent[3]="http://www.pregao.sp.gov.br/imagens/head_grf04.jpg"
//No need to edit after here
if (ie||dom)
document.write('<iframe align="center" id="dynstuff" src="" '+iframeprops+'></iframe>')
function random_iframe(){
if (ie||dom){
var iframeobj=document.getElementById? document.getElementById("dynstuff") : document.all.dynstuff
iframeobj.src=randomcontent[Math.floor(Math.random()*randomcontent.length)]
}
}
window.onload=random_iframe
</script>]]>
|