		function EditProfile(){
			var x,y;
			x=Math.floor((screen.width - 200)/2);
			y=Math.floor((screen.height - 150)/2);
			var msgWindow = window.open ("/profile/edit_profile.asp", "Profile", "height=300,width=400,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no,left="+x+",top="+y,"replace=true");
			if (msgWindow != null && msgWindow.opener == null) msgWindow.opener=window;
			if (navigator.appVersion.charAt(0) == 4) {
				msgWindow.focus();
			}
		}
		
		function EditAccount(){
			var x,y;
			x=Math.floor((screen.width - 200)/2);
			y=Math.floor((screen.height - 150)/2);
			var msgWindow = window.open ("/profile/edit_account.asp", "Profile", "height=400,width=400,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,left="+x+",top="+y,"replace=true");
			if (msgWindow != null && msgWindow.opener == null) msgWindow.opener=window;
			if (navigator.appVersion.charAt(0) == 4) {
				msgWindow.focus();
			}
		}

		function DeletePortrait(){
			var x,y;
			x=Math.floor((screen.width - 200)/2);
			y=Math.floor((screen.height - 150)/2);
			if (confirm(' Вы уверены ? ')) {
				var msgWindow = window.open ("/profile/edit_portrait.asp?cmd=delete", "Portrait", "height=200,width=300,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,left="+x+",top="+y,"replace=true");
				if (msgWindow != null && msgWindow.opener == null) msgWindow.opener=window;
				if (navigator.appVersion.charAt(0) == 4) {
					msgWindow.focus();
				}
			}
		}

		function EditPortrait(){
			var x,y;
			x=Math.floor((screen.width - 200)/2);
			y=Math.floor((screen.height - 150)/2);
			var msgWindow = window.open ("/profile/edit_portrait.asp", "Portrait", "height=200,width=300,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,left="+x+",top="+y,"replace=true");
			if (msgWindow != null && msgWindow.opener == null) msgWindow.opener=window;
			if (navigator.appVersion.charAt(0) == 4) {
				msgWindow.focus();
			}
		}
		
		function AddPlace(category){
			var x,y;
			x=Math.floor((screen.width - 200)/2);
			y=Math.floor((screen.height - 150)/2);
			var msgWindow = window.open ("/profile/add_place.asp?category="+category, "AddPlace", "height=200,width=300,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,left="+x+",top="+y,"replace=true");
			if (msgWindow != null && msgWindow.opener == null) msgWindow.opener=window;
			if (navigator.appVersion.charAt(0) == 4) {
				msgWindow.focus();
			}
		}
		
		function MarkPlace(){
			var x,y;
			x=Math.floor((screen.width - 200)/2);
			y=Math.floor((screen.height - 150)/2);
			var msgWindow = window.open ("", "MarkPlace", "height=200,width=300,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,left="+x+",top="+y,"replace=true");
			if (msgWindow != null && msgWindow.opener == null) msgWindow.opener=window;
			if (navigator.appVersion.charAt(0) == 4) {
				msgWindow.focus();
			}
		}
		

