// JavaScript by PrizeByte
ghl = {};

ghl.quoteOver = function(s){
	$("#br").html("<h3>&quot;" + s + "&quot;</h3>");
};

$(function(){
	var cs = document.createElement('link');
	$(cs).attr({'rel':'stylesheet','type':'text/css','href':'css/cv_print.css','media':'print','disabled':'disabled'});
	$('head').append(cs);
	$("a[rel^='topwin']").topWin("showcv.php", "",function(active){
		if(active) $(cs).removeAttr('disabled');
		else $(cs).attr('disabled','disabled');
	});
});


