var idvalu;
function test(id,stylecss,modelval,sideval)
{
	idvalu = sideval;
 
	var loc = window.location;
	if(stylecss == "")
		stylecss = "includes/counter.css";
	document.write('<link href="http://www.hyiprater.net/'+stylecss+'" rel="stylesheet" type="text/css" />');	
	document.write('<div style="visibility: visible;" id="counter_pop'+idvalu+'"><iframe id="popup'+idvalu+'"  src="http://www.hyiprater.net/counterdisplayflag.php?id='+id+'&stylecss='+stylecss+'&loc='+loc+'&model='+modelval+'" style="display:none;" marginwidth="0" marginheight="0" allowtransparency="true" frameborder="0" height="350" scrolling="no"  onmouseout="hideIframe('+idvalu+')"></iframe></div><div id="counter'+idvalu+'"><img src="http://www.hyiprater.net/images/counter1'+idvalu+'.png" onmouseover="showIframe('+idvalu+')" alt="HYIP Rater" style="" /></div>');
	
}
 
function showIframe(idvalu)
{
	value = 'popup'+idvalu;
	value = value.toString();
	document.getElementById(value).style.display="block";
	
}
function hideIframe(idvalu)
{
	value = 'popup'+idvalu;
	value = value.toString();
	document.getElementById(value).style.display="none";
	
}