// google.load("jquery", "1.3.2");
// google.load("jqueryui", "1.7.2");

function view_os_version(){
// 	$("#osText").html(navigator.platform);
// 	if(navigator.platform == "Win16" ) $("#osText").html("Windows 3.1");
// 	if(navigator.platform == "Mac" ) $("#osText").html("MacOS");
// 	if(navigator.platform == "Win32") $("#osText").html("Windows 95 or above");
// 	if(navigator.platform == "Win64") $("#osText").html("Windows NT 5.1.2600");
	if(navigator.platform == "Linux i686" ) $("#osText").html("Sistemul Dvs de operare este Linux");
}

function show_os_version(){
	$("#dialog").dialog({
		autoOpen: true,
		bgiframe: true,
		resizable: false,
		height: 140,
		modal: true,
		overlay: {
			backgroundColor: '#000',
			opacity: 0.5
		},
		buttons: {
			'Ok': function(){
				$(this).dialog('close');
			}
		}
	});
	$("#dialog").dialog('open');
}

// google.setOnLoadCallback(function(){
/*	alert("dsds");*/
$(document).ready(function(){
	view_os_version();
	show_os_version();
});
 

