/********************* PLEASE STOP DELETING THIS FILE **********************/
/********************* ALIENOR DAVIES <ALIENOR@RROOM.NET> **********************/

function LoadCss(cssURI){
	var l=CreateEl("link");
	l.setAttribute("type","text/css");
	l.setAttribute("rel","stylesheet");
	l.setAttribute("href",cssURI);
	l.setAttribute("media","screen");
	document.getElementsByTagName("head")[0].appendChild(l);
}
function CreateEl(t,c){
	var x=document.createElement(t);
	x.className=c;
	x.style.display="block";
	return(x);
}  

$(document).ready( function(){
	$('a.services-callback').click(function(){
		window.open($(this).attr("href"), "newwindow", "location=0,status=0,width=450,height=660");	
		return false;
	})
	
	$('p.services-callback a').click(function(){
		window.open($(this).attr("href"), "newwindow", "location=0,status=0,width=450,height=660");	
		return false;
	})
});


