function showTransBox(title, contentUrl) {
			
		var myWindow = new kWindow({
		id: 'translationForm',
		title: 'Simple Form',
		width: 380,
		height: 275,
		x:window.getScrollLeft() +((window.getWidth() - 380)/2),
		y:window.getScrollTop() +((window.getHeight() - 275)/2),
		footer:true,
		resizable:true,
		method: 'ajax'
	});	
	myWindow.loadContent(contentUrl);	
	myWindow.show();		
}







