$( document ).ready( function()
{
	/**
	 * A warning message appears everytime you click an object in the page which has
	 * a warning class attached to it
	 */
	$( '.warning' ).click( function()
	{
		if( ! confirm( 'Esti sigur de acest pas?' ) )
		{
			return false;
		}
		
		return true;
	});
});

function openWindow( theURL, winName, features )
{
	window.open( theURL, winName, features );
}

