// slide
var active = 0;
var height = 182;

function Close() {
	if(height >= 20) {
		height = height - 1;
		document.getElementById('slider').style.height=height + 'px';
		window.setTimeout('Close()', 1);
	} else {
		document.getElementById('slider').style.visibility="hidden";
	}
} 

function InitClose() {
	if(height >= 20) {
		height = height - 180;
		document.getElementById('slider').style.visibility="hidden";
	} else {
		document.getElementById('slider').style.visibility="hidden";
	}
} 

function Open() {
	if(height <= 182) {
		document.getElementById('slider').style.visibility="visible";	
		height = height + 1;
		document.getElementById('slider').style.height=height + 'px';		
		window.setTimeout('Open()', 1);
	}
}
 
function toggle_visible() {
	if(active == 0) {
		active = 1;
		Open();				
	} else if(active == 1){
		active = 0;	
		Close();
	}
}

// current page URL
var site_id = (location.href);
site_id = site_id.replace(/#/g,"");

//browser
var browser = navigator.appName;
if (browser='Netscape')
{
//firefox max width
var maxwidth = window.innerWidth;
maxwidth=maxwidth-120;
}
if (browser='Microsoft Internet Explorer')
{
//ie max width
var maxwidth = document.body.clientWidth;
maxwidth=maxwidth-110;
}
// clicker
maxwidth_click = maxwidth;
//alert(browser);
document.write ('<iframe id="slider" style="background-color:#222222;position: absolute; left: '+maxwidth+'; top: 3px;" src = "http://www.capestay.co.za/widget/code.php?siteid='+site_id+'" marginheight="0" marginwidth="0" frameborder ="0" width = "94"scrolling ="no"></iframe>'); 
document.write ('<div style="z-index: 2; position: absolute; left: '+maxwidth_click+'; top: 1px;"  marginheight="0" marginwidth="0" frameborder ="0" width = "94" scrolling ="no"><img src="http://www.capestay.co.za/widget/images/share.gif" onClick="toggle_visible()""; /></div>'); 