function Ajax(divID,sourceFile)
	{
	var xmlHttp;	
	try
		{  
		xmlHttp=new XMLHttpRequest();  
		}
	catch (e)
		{   
		try
			{    
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");    
			}
		catch (e)
			{    
			try
				{      
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");      
				}
			catch (e)
				{      
				alert("Your browser does not support AJAX!");      
				return false;      
				}    
			}  
		}
	xmlHttp.onreadystatechange=function()
		{
		if(xmlHttp.readyState==4)
			{
			document.getElementById(divID).innerHTML=xmlHttp.responseText;			
			}
		}
	xmlHttp.open("GET",'/ajax/' + sourceFile,true);
	xmlHttp.send(null);
	}

if (top.location != location) 
	{
	top.location.href = document.location.href;
	}
	


/////////////////////////////
	$(document).ready(function(){
		$(".smallWindow").colorbox({width:"300", height:"150", iframe:true});
	});
