show_thick = true;
function showBox(width_value, height_value, page) {
	//change required layers styles
	document.getElementById('thick_box').style.width = width_value+'px';
	document.getElementById('thick_box').style.height = height_value+'px';
	//document.getElementById('thick_box').style.marginRight = 'auto';
	document.getElementById('thick_box').style.left = '22%';
	//document.getElementById('thick_box').style.right = '50%';
	document.getElementById('thick_box').style.visibility = 'visible';
	document.getElementById('parent_container').style.visibility = 'visible';
	document.getElementById('left_icons').innerHTML = '';
	
	//call cartoon page
	if(page == '')
		ajaxPage('thick_box', 'cartoon.ajax.php','');
	else 
		ajaxPage('thick_box', page,'');
	
	//remove flash 
	if(document.getElementById('cartoon_iframe'))
		document.getElementById('cartoon_iframe').src = '';
	
	//animate container box
	$('#parent_container').animate( {
			opacity :0.8
		});
	show_thick = false;
}
function hideBox() {
	if(!show_thick) {
	document.getElementById('thick_box').style.visibility = 'hidden';
	document.getElementById('thick_box').innerHTML = '';
	document.getElementById('left_icons').innerHTML = '<div><a href="contact.php"><img src="images/contactIconTop.jpg" alt="Contact us" border="0" /></a></div>  <div><a href="<?= extra::facebookLink($group_id) ?>"><img border="0" src="images/facebook_icon.jpg" /></a></div>    <div style="padding-left:15px;"><div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=210929685613532&amp;xfbml=1"></script><fb:like href="http://www.sghar.com/" send="true" layout="box_count" width="300" show_faces="true" font="tahoma"></fb:like></div>';
	
	//back the caartoon flash
	if(document.getElementById('cartoon_iframe'))
		document.getElementById('cartoon_iframe').src = 'cartoon/';
	
	//animate container box
	$('#parent_container').animate( {
			opacity :0
		});
	show_thick = false;
	setTimeout('document.getElementById("parent_container").style.visibility = "hidden"',1000);
	}
}
function escHide(e) {
	if(!show_thick) {
		var browserName = navigator.appName;
		if (browserName == 'Microsoft Internet Explorer')
			key = event.keyCode;
		else
			key = e.which;
		if(key == 27)
			hideBox();
	}
		
}
